Categories | Question details Back To List | ||
DHTMLX Grid I am currently using dhtmlx for loading a data entry grid. I am having in my own custom format.. Hence would have to use mygrid.load("PartyData.xml","xmlB"); But since the XML is available to me as a string and not a file.. I need to use mygrid.loadXMLString(xmlString); But the loadXMLString function only expects string in the dhtmlx xml format and not the custom format.. In short I need a function mygrid.loadXMLString(xmlString,"xmlB"); Is this possible ?? Is it already available ?? Please let me know.. Answer posted by Support on Oct 22, 2008 02:02 You can use grid.parse("string here","xmlB") |