hi…
I have used custom xml format ie xmlB in Dhtmlx grid case…
Now i want to use custom xml format for tree grid also…
So please tell me how do I load tree grid using custom xml format…?
my xml format is
Also tell me how do I specify the mygrid.kidsXMLFile as xml string…?
So please tell me how do I load tree grid using custom xml format…?
Unfortunately it not possible in current version
>>Also tell me how do I specify the mygrid.kidsXMLFile as xml string…?
You can use onDynXLS event as
mygrid.attachEvent(“onDynXLS”,function(id){
//will be called each time when xml for element {id} need to be loaded
mygrid.parse(some_xml_string_for_id);
return false;
});