Announcement

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

    Windows bottom breaks on contents downsize in IE9

    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
    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;
    	}
    }
    Attached Files

    #2
    Thanks for the report. We've made a change to address this. Please try the next nightly build (Dated Feb 15th or greater)

    Regards
    Isomorphic Software

    Comment


      #3
      new issue with left and right borders

      Thank you for fast reply. I've tried the new nightly build - v8.3p_2013-02-15/LGPL Development Only (built 2013-02-15)
      It fixes the problem and adds one more. Now left and right borders disappeared. See the screenshot attached. The test case is the same as above.
      Attached Files

      Comment


        #4
        This should be fixed in the *next* nightly build - Feb 16 or greater

        Thanks
        Isomorphic Software

        Comment


          #5
          borders are ok now

          Isomorphic, the borders are ok now v8.3p_2013-02-18/LGPL Development Only (built 2013-02-18)
          Thank you!

          Comment

          Working...
          X