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.
How to shift the country textField up to be in parallel with comments TextAreaItem.
Please see the screen-shot.
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);
Please see the screen-shot.
Comment