Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

onChanged not firing in IE11 with clear icon

$
0
0
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.

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();
        }


Attached Images
File Type: jpg IEonChangedIssue.jpg (131.6 KB)

Viewing all articles
Browse latest Browse all 4756

Trending Articles