這是一些非常簡單的代碼,我用它來嘗試顯示VerticalSplitPanel,但是我添加的小部件沒有顯示。 VerticalSplitPanels的分割器不會顯示,但是我添加的小部件沒有。VerticalSplitPanel在GWT中不顯示小部件
代碼:
public class MyView extends Composite
{
private VerticalSplitPanel mainPanel=new VerticalSplitPanel();
public CountryFilterView()
{
mainPanel.setSize("100%", "100%");
mainPanel.setSplitPosition("50%");
// Add some content
String randomText = "This is some text to show how the contents on either "
+ "side of the splitter flow. "
+ "This is some text to show how the contents on either "
+ "side of the splitter flow. "
+ "This is some text to show how the contents on either "
+ "side of the splitter flow. ";
mainPanel.setTopWidget(new HTML(randomText));
mainPanel.setBottomWidget(new HTML(randomText));
initWidget(mainPanel);
}
}
我做得不對,或者是VerticalPanel只是很煩人的越野車?
不,它仍然是相同的,即使在將initWidget放在一切之前。 – 2009-08-23 18:49:00