|
#1
|
|||
|
|||
|
Hi,
Doing this in IE9 with doctype, a horizontal scrollbar comes up. Why is it doing that? In FF: no scrollbar is introduced. The form has a fixed height. We only want to show about 2 rows, and if this form has more rows, the vertical scrollbar shows (OK). repro: Code:
VLayout v = new VLayout();
v.setWidth100();
v.setOverflow(Overflow.AUTO);
v.setHeight(50);
TextItem t1 = new TextItem("test1", "test1");
TextItem t2 = new TextItem("test2", "test2");
TextItem t3 = new TextItem("test3", "test3");
TextItem t4 = new TextItem("test4", "test4");
TextItem t5 = new TextItem("test5", "test5");
DynamicForm f = new DynamicForm();
f.setWidth100();
f.setNumCols(8);
f.setItems(t1, t2, t3, t4, t5);
f.setFixedColWidths(true);
v.setMembers(f);
thanks, |
|
#2
|
|||
|
|||
|
This is now resolved. The fix will show up in the next nightly build
Thanks Isomorphic Software |
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| doctype IE9 grid columns off | levi | Smart GWT Technical Q&A | 0 | 13th Apr 2012 04:20 |
| Horizontal scrollbar hidden by multiple row summary | mishamo | Smart GWT Technical Q&A | 6 | 29th Jul 2011 14:00 |
| Horizontal scrollbar for treegrid inside tab and nesting layout | alo | Smart GWT Technical Q&A | 6 | 7th Mar 2011 12:41 |
| Horizontal scrollbar for treegrid cannot show up when having the Zindex set | mmfish | Smart GWT Technical Q&A | 1 | 15th Oct 2009 20:26 |
| Horizontal Scrollbar | sipungora | Technical Q&A | 0 | 4th May 2009 02:53 |