在SmartGwt SectionItem中添加Gwt HTMLPanel

时间:2014-05-15 12:55:39

标签: gwt smartgwt

我在GWT HTMLPanel中有一个表单(包含像textbox这样的gwt项目),我想在SectionItem中添加这个表单然后将一个SectionItem添加回另一个HTMLPanel(主要的一个)

你能帮助我实现这个目标。

有源代码:

     HTMLPanel hFiltre= new HTMLPanel("");
    //form0
    HTMLPanel formular=new HTMLPanel("");

    HTMLPanel codi = new HTMLPanel("");
    formular.add(codi);
    codi.setWidth("100%");

    HTMLPanel description = new HTMLPanel("");
    formular.add(description);
    .....

    hFiltre.add(formular);

现在我想要的是在SectionItem中添加公式,然后在hFiltre中添加SectionItem

有截图: enter image description here

0 个答案:

没有答案