有没有办法在GWT中应用具有多个子小部件的FocusPanel

Is there any way to apply FocusPanel in GWT with more than one Child widget

本文关键字:小部 FocusPanel GWT 应用 有没有      更新时间:2023-09-26

我希望将鼠标悬停事件添加到包含多个子小部件的面板中。当我尝试使用FocusPanel时,我因异常"SimplePanel只能包含一个子小部件"而停止。还有其他方法可以将鼠标悬停在具有多个子小部件的面板上?例如在下面的代码中

<g:FocusPanel ui:field="parent"><childwidget1/><childwidget2/><childwidget3/><g:FocusPanel>

我需要将鼠标悬停事件添加到父面板。请帮忙!

FocusPanel和子小部件之间添加一个子FlowPanel(或任何布置多个小部件的面板,具体取决于您的布局需求):

<g:FocusPanel ui:field="parent">
  <g:FlowPanel>
    <my:childwidget1/>
    <my:childwidget2/>
    <my:childwidget3/>
  </g:FlowPanel>
</g:FocusPanel>