Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/34.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Css 覆盖溢出:从布局面板隐藏';s层_Css_Gwt_Widget_Layoutpanels - Fatal编程技术网

Css 覆盖溢出:从布局面板隐藏';s层

Css 覆盖溢出:从布局面板隐藏';s层,css,gwt,widget,layoutpanels,Css,Gwt,Widget,Layoutpanels,有没有办法覆盖溢出:从LayoutPanel的层隐藏? 这就是我所拥有的: <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>

有没有办法覆盖溢出:从LayoutPanel的层隐藏? 这就是我所拥有的:

   <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分配给layer元素,上面的内联样式显然不起作用。 我需要指定溢出:对特定层可见。有什么解决办法吗


非常感谢您。

您必须进入DOM级别

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