Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    How to add Dynamic Form fields to Grid/Table

    Hi,

    Am new to GWT but I need little help here... I have a code that collects all the dynamic form fields...
    private DynamicForm form1;

    BasicFormWidgetFactory fw = new DefaultBasicFormWidgetFactoryImpl();

    TextItem xxx= (TextItem)fw.getTextItem("abc");
    StaticTextItem f0_8 = (StaticTextItem)fw.getStaticTextItem();
    BooleanItem x = (BooleanItem)fw.getBooleanItem("ABC");
    form1.setFields(xxx,f0_8,x);

    How can i add/set these fields into a Grid or table.

    I need to display both form fields and form fields in grid/table.
Working...
X