Announcement

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

    Button Not Horizontally Aligning in Form

    What property am I missing that will cause the button item to sit in the proper place (to the right of the combobox)?
    Code:
    DynamicForm df = new DynamicForm();
            df.setNumCols(6);
            df.setColWidths("*","*","*","*","*","*");
            df.setWrapItemTitles(false);
    
    df.setItems(new FormItem[]{chkScrollRawLogs,cbiLogType,getButtonItem()});
    Attached Files
    Last edited by ls3674; 15 Dec 2011, 00:36.

    #2
    setStartRow(false), setEndRow(false) (see Form Layout overview).

    Comment

    Working...
    X