Announcement

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

    ie8,ie9 DynamicForm layout problem

    Hi,
    I'm using smartgwt 2.5 and GWT 2.4 with <!DOCTYPE HTML> tag. All seems work OK, but I found one problem in ie8, ie9:

    If I have DynamicForm with property setIsGroup(true) and checkboxes, the form is 2x longer and the second half is empty - see attached image. In other browsers it works OK. If I set setIsGroup(false) the form length is OK.

    Here is example:

    Code:
            @Override
    	public void onModuleLoad() {
    		int itemNum = 15;
    		
    		FormItem items[] = new FormItem[itemNum];
    		CheckboxItem cbi;
    		for (int i=0; i<itemNum;i++) {
    			cbi = new CheckboxItem("A"+i, "A"+i);
    			cbi.setLabelAsTitle(true);
    			items[i] = cbi;
    		}
    		
    		
    		DynamicForm form = new DynamicForm();
    		form.setTitleOrientation(TitleOrientation.TOP);
    		form.setNumCols(5);
    		form.setGroupTitle("test");
    		form.setIsGroup(true);
    		form.setBackgroundColor("lime");
    		form.setAutoHeight();
    		form.setOverflow(Overflow.VISIBLE);
    		form.setFields(items);
    		form.setColWidths(new String[]{"35","35","35","35","35"});
    		form.draw();
    	}
    Thanks Pavel
    Attached Files

    #2
    Thanks for the notification. We've made a change to resolve this (will be present in the next nightly build - dated Oct 6 or greater).

    Comment


      #3
      Hi, Even i am facing the same problem.One more thing is that ,when ever i click on the checkbox this group area is keeps on increasing.Also this functionality is working fine with chrome.kindly check attachment.
      Attached Files

      Comment


        #4
        See previous post, this is already fixed. Nightlies are at SmartClient.com/builds.

        Comment

        Working...
        X