有什么方法可以覆盖溢出:隐藏在LayoutPanel的Layer中吗?
这就是我所拥有的:

   <g:LayoutPanel>
    <g:layer height="20px" bottom="0px" right="0px" width="70px" style="overflow:visible;">
    <g:Anchor styleName="{style.helpLink}" ui:field="helpL">Help</g:Anchor>
    </g:layer>
   </g:LayoutPanel>


我无法将ui:field分配给图层元素,并且上面的内联样式显然不起作用。
我需要为该特定层分配overflow:visible。有什么解决方法吗?

非常感谢。

最佳答案

您将不得不降至DOM级别。

您可以执行以下操作:在窗口小部件加载后,helpL.getElement().getParentElement().getStyle().setOverflow( Overflow.VISIBLE );

09-12 03:52