在SmartGwt SectionItem中添加Gwt HTMLPanel

在SmartGwt SectionItem中添加Gwt HTMLPanel,gwt,smartgwt,Gwt,Smartgwt,我在gwt HTMLPanel中有一个表单(包含诸如textbox之类的gwt项),我想将此表单添加到SectionItem中,然后将SectionItem添加回另一个HTMLPanel(主表单) 你能帮助我如何实现这一点吗 以下是源代码: HTMLPanel hFiltre= new HTMLPanel(""); //form0 HTMLPanel formular=new HTMLPanel(""); HTMLPanel codi = new HTMLPa

我在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

下面是截图:

不要将GWT小部件与SmartGWT小部件混用。我知道,但我需要它。请使用
DynamicForm
而不是GWT表单。请共享您的代码以更快地解决问题。
SectionItem
必须位于
DynamicForm
内。