SSchaefer
29 May 2008, 1:10 AM
Hi,
i have a GWT FlexTable. When I put DateFields or CoboBoxes (all TriggerFields?) in this FlexTable, the Trigger is shown behind the next Cell. I think, the Trigger is probably ignored by the size calculation algorithm.
Put this code into an EntryPoint:
FlexTable table=new FlexTable();
RootPanel.get().add(table);
table.setWidget(0, 0, new TextField());
table.setWidget(0, 1, new DateField());
table.setWidget(0, 2, new ComboBox());
table.setWidget(0, 3, new TextField());I used:
GWT 1.5 M2 on Windows XP
Ext GWT 1.0 Beta 3
Slate style (if this is the problem)
Thanks for your help.
Steffen
i have a GWT FlexTable. When I put DateFields or CoboBoxes (all TriggerFields?) in this FlexTable, the Trigger is shown behind the next Cell. I think, the Trigger is probably ignored by the size calculation algorithm.
Put this code into an EntryPoint:
FlexTable table=new FlexTable();
RootPanel.get().add(table);
table.setWidget(0, 0, new TextField());
table.setWidget(0, 1, new DateField());
table.setWidget(0, 2, new ComboBox());
table.setWidget(0, 3, new TextField());I used:
GWT 1.5 M2 on Windows XP
Ext GWT 1.0 Beta 3
Slate style (if this is the problem)
Thanks for your help.
Steffen