SGWT: v10.0p_2014-10-22
OS: Win7
Browser: IE11
In IE11, an onChanged event is not firing when clicking the IE clear icon in the ComboBox. It also does not fire when deleting the last character of the value in the ComboBox.
OS: Win7
Browser: IE11
In IE11, an onChanged event is not firing when clicking the IE clear icon in the ComboBox. It also does not fire when deleting the last character of the value in the ComboBox.
Code:
public void onModuleLoad() {
new VLayout() {{
addMember(new DynamicForm() {{
setFields(new ComboBoxItem() {{
setValueMap("Foo", "Bar", "Baz");
setAllowEmptyValue(true);
addChangedHandler(new ChangedHandler() {
@Override
public void onChanged(ChangedEvent event) {
SC.say("hello");
}
});
}});
}});
}}.show();
}