The issue is present on nightly build of smartGWT 3.1 (v8.3p_2013-02-13/LGPL Development Only (built 2013-02-13)) + GWT 2.5 + IE9 (Update 9.0.12)
Windows bottom goes down and gets cut when its content resized to be smaller.
Sample code
Windows bottom goes down and gets cut when its content resized to be smaller.
Sample code
Code:
import com.google.gwt.core.client.EntryPoint; import com.smartgwt.client.widgets.Window; import com.smartgwt.client.widgets.form.DynamicForm; import com.smartgwt.client.widgets.form.fields.TextItem; import com.smartgwt.client.widgets.layout.Layout; import com.smartgwt.client.widgets.layout.VLayout; public class TestWindow implements EntryPoint { @Override public void onModuleLoad() { Window w = new Window(); w.setAutoSize(true); Layout l = new VLayout(); l.addMember(constructForm()); l.addMember(constructForm()); l.addMember(constructForm()); l.addMember(constructForm()); l.addMember(constructForm()); DynamicForm lastForm = constructForm(); l.addMember(lastForm); w.addItem(l); w.show(); lastForm.setVisible(false); } public DynamicForm constructForm(){ DynamicForm form = new DynamicForm(); TextItem ti = new TextItem("Text_item"); form.setItems(ti); return form; } }
Comment