我有这个要求来设置水平分割器面板的右侧。据我所知,GWT 1.7支持单个面板(左侧和右侧)样式,但我们在这里使用GWT 1.5。
gwt代码:
HTML div1 = new HTML("Div 1");
div1.setWidth("200px");
div1.setHeight("200px");
HTML div2 = new HTML("Div 2");
div2.setWidth("400px");
div2.setHeight("500px");
HorizontalSplitPanel horizontalSPanel = new HorizontalSplitPanel();
horizontalSPanel.setLeftWidget(div1);
horizontalSPanel.setRightWidget(div2);
RootPanel.get().add(horizontalSPanel);
相应的输出:
<div class="gwt-HorizontalSplitPanel" style="position: relative; height: 100%;">
<div style="border: medium none ; margin: 0pt; padding: 0pt; position: absolute; left: 0px; right: 0px; top: 0px; bottom: 0px;">
<div style="border: medium none ; margin: 0pt; padding: 0pt; overflow: auto; position: absolute; top: 0px; bottom: 0px; width: 511px;">
<div class="gwt-HTML" style="width: 200px; height: 200px;">Div 1</div>
</div>
<div style="position: absolute; top: 0px; bottom: 0px; left: 511px;">
<table height="100%" cellspacing="0" cellpadding="0" class="hsplitter">
<tbody>
<tr><td valign="middle" align="center">
<img border="0" style="background: transparent url(http://localhost:8888/com.xyzpackage.MyEntryPoint/4BF90CCB5E6B04D22EF1776E8EBF09F8.cache.png) no-repeat scroll 0px 0px; width: 7px; height: 7px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" src="http://localhost:8888/com.xyzpackage.MyEntryPoint/clear.cache.gif"/>
</td></tr>
</tbody>
</table>
</div>
<div style="border: medium none ; margin: 0pt; padding: 0pt; overflow: auto; position: absolute; top: 0px; bottom: 0px; right: 0px; left: 518px;">
<div class="gwt-HTML" style="width: 400px; height: 500px;">Div 2</div>
</div>
</div>
</div>
有什么方法可以将样式仅应用于RHS div?
基本上,我有一个要求,它不允许我的应用程序在RHS视图中有一个垂直滚动条。答案 0 :(得分:3)
你总是可以将Div 2包装到另一个Div中并给它一个overflowY:hidden属性,这样你就不需要经过DOM树了。
与ScrollPanel中使用的方法相同只是出于相反的原因。
答案 1 :(得分:0)
不得不诉诸DOM:
Node node = horizontalSPanel.getElement().getFirstChildElement().getChildNodes().getItem(2);
// set the overflow y to hidden, this is in point of view of GWT current version
// does not allow user to set style to right or left containers.
DOM.setStyleAttribute((Element) node, "overflowY", "hidden");
这非常蹩脚,并使用硬编码
任何人都有更好的解决方案吗?