How can i update grid using updateFromXml but not from an url but with an xmlstring. Is there a equivalent of loadXMLString() for updateFromXMl as well?
Cheers
GK
How can i update grid using updateFromXml but not from an url but with an xmlstring. Is there a equivalent of loadXMLString() for updateFromXMl as well?
Cheers
GK
Unfortunately there is no such equivalent. To update grid from xml string you may use:
grid.clearAll();
grid.parse(xml_string)