Announcement

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

    Styling FormItems in DynamicForm

    Version: SNAPSHOT_v8.3d_2012-07-18/LGPL Development Only (built 2012-07-18)

    Browser: FF13

    I have a DynamicForm which have 3 textItem and 1 TextAreaItem the problem that one textItem is not at the same line of the TextAreaItem.

    Code:
    DynamicForm form = new DynamicForm();
    		form.setHeight(150);
    		form.setNumCols(4);
    		TextItem stateItem = new TextItem("Name1", "State/Provience");
    		TextItem zipItem = new TextItem("Name2", "Zip/Postal Code");
    		TextItem countryItem = new TextItem("Name3", "Country/Region");		
    		TextAreaItem  commentItem = new TextAreaItem ("Name4", "Comments");
    		
    		
    		form.setItems(stateItem, zipItem, countryItem, commentItem);
    How to shift the country textField up to be in parallel with comments TextAreaItem.

    Please see the screen-shot.
    Attached Files

    #2
    i have the same problem in my application also

    Comment

    Working...
    X