Categories | Question details Back To List | ||
XML parsing in IE (continued) Well, it does work in both browsers (FF/IE) when I use XML string in grid.parse method, like this: var xmlDoc = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><rows><row id=\"123\"><cell><![CDATA[456]]></cell><cell><![CDATA[some_data]]></cell><cell><![CDATA[Mon Jun 02 18:11:36 IDT 2008]]></cell></row></rows>"; grid.parse(xmlDoc); Fine. But what I have to do to make it work with the Document object? Answer posted by Support on Jun 03, 2008 04:53 There was a bug in code, please use updated js file which will work with Document object as well. http://dhtmlx.com/docs/products/kb/index.shtml?cat=recent&q=3517 |