I am developing a web application using GWT
. The application is working fine in both FF and chrome. When I run it in IE9, I receive "Error: DOM Exception: INVALID_CHARACTER_ERR (5)".
When I review the code that caused the exception is in the creation of a ListBox
as below
comboBox = new ListBox(false);
and in the compiled Javascript is:
this["@com.google.gwt.dom.client.DOMImplTrident::createSelectElement(Lcom/google/gwt/dom/client/Document;Z)"] = function(doc, multiple) {
var html = multiple?'<SELECT MULTIPLE>':'<SELECT>';
return doc.createElement(html);
}
How can I resolve this problem?
Thanks and Regards,
Haider