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:
Thanks Pavel
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(); }
Comment