Hi Isomorphic,
please see http://www.smartclient.com/smartgwt/showcase/#layout_form_spanning and change the end of FormSpanningSample.java to look like this:
When you select and de-select the new checkbox now, the border of the Form-group gets higher and wider a few millimetres with every click.
Tested with v8.2p_2012-04-18/EVAL Deployment 2012-04-18 and LGPL 3.1d 2012-05-01 nightly in FF Dev Mode.
Best regards,
Blama
please see http://www.smartclient.com/smartgwt/showcase/#layout_form_spanning and change the end of FormSpanningSample.java to look like this:
Code:
BooleanItem test = new BooleanItem();
test.setTitle("Click to see the border grow");
test.setWidth("*");
TextAreaItem messageItem = new TextAreaItem();
messageItem.setShowTitle(false);
messageItem.setLength(5000);
messageItem.setColSpan(2);
messageItem.setWidth("*");
messageItem.setHeight("*");
form.setFields(subjectItem, test, messageItem);
Tested with v8.2p_2012-04-18/EVAL Deployment 2012-04-18 and LGPL 3.1d 2012-05-01 nightly in FF Dev Mode.
Best regards,
Blama
Comment