GWT domHandler not working for Internet Explorer
I added a domHandler for changeEvents. Following the answer here: Enabling a开发者_开发技巧nd Disabling Save button on a GWT page
This works for listboxes in Chrome and Firefox but doesn't work for IE8.
Does anybody have any recommendations? I rather not individually handle each textbox and listbox on our page. I also rather not iterate through each widget on the page.
Unfortunately, even though the specs say it should do, Internet Explorer does not bubble up the DOM with the onChange event.
Handling each widgets, ever individually or by iterating, seems to be the only option.
精彩评论