Hi,
Following this code on SmartGWT & no CSS of course for IE8 I've got a strange presentation which is not the case inside Chrome or Firefox.
You can find the difference of presentation in the attached files.
Regards,
Denis.
Following this code on SmartGWT & no CSS of course for IE8 I've got a strange presentation which is not the case inside Chrome or Firefox.
Code:
VLayout viewsListCombo = new VLayout(); DynamicForm form = new DynamicForm(); form.setWidth(250); ComboBoxItem cbItem = new ComboBoxItem(); cbItem.setTitle("Select"); //cbItem.setHint("<nobr>A simple ComboBoxItem</nobr>"); cbItem.setType("comboBox"); cbItem.setValueMap("Cat", "Dog", "Giraffe", "Goat.sx", "Marmoset", "Mouse"); //cbItem.setWidth(50); form.setFields(cbItem, cbItem); form.draw();
Regards,
Denis.
Comment