Check documentation for the latest version of dhtmlxSuite parse DHTMLX Docs

parse

loads data from a local datasource (XML string, CSV string, XML island, XML object, JSON object, javascript array)

void parse(string|object data,string type);
datastring|objectthe data to load
typestringdata type (XML,JSON,JSarray,CSV), optional, data is treated as XML by default

Example

//parse tree from the xml string
myTree.parse(data);
//parse tree from the csv string
myTree.parse(data,"csv");
//parse tree from the javascript array
myTree.parse(data,"jsarray");
//parse tree from the json string
myTree.parse(data,"json");

Details

the method works in the synchronous mode

Change log

added in version 4.4

Back to top