Hi there,
we have updated our application to the newest hotfix (10.3.20103.2105), and
after updating we are getting the following javascript error in Infagistics grid.js in the "init" part:
"this.Xml.selectSingleNode is not a function"
This line of code is throwing the exception:
this.Node = this.Xml.selectSingleNode("UltraWebGrid/UltraGridLayout");
The error only appears in Firefox, not in IE.
As i have seen, selectSingleNode is not a function in FireFox, so what can i do?
Are there other users, who are getting the same problem?
Thanks for any help?
Christian Skalbaniak
I have the same issue as well. I opened a case ticket 3 days ago and no response from infragistics.
We are getting the same issue. Do you guys have a resolution for this?
Thanks.
Unfortunately selectSingleNode function doesn't works with Firefox/Chrome. This is primitive way IE used to handle the XML Parsing.
I tried out an example with AJAX response. Hence the XMLHttpRequest responseXML object was successfully processed using selectSingleNode() for any of the tree element in the document object in IE. On the contrary it doesn't work with Firefox/Chrome.
To make it work across we will need to handle the response XML a little differently. We can use getElementsByTagName("<tagName>") to get an array of nodes and hence proceed further.
~Praveen