hello,
I want to use grid with grid in my code also loading this grid using custom xml format…
Please tell me the different events associated with such grid with grid…
also a provision to load such grid using custom xml string… ie xmlb format…
dhtmlx.com/docs/products/dhtmlxG … subrowsndd
There are two events - onSubGridCreated and onSubGridLoaded which can be used to customize subgrid behaviors and attach necessary event handlers to subgrid.
>>also a provision to load such grid using custom xml string… ie xmlb format…
mygrid.attachEvent(“onSubGridCreated”,function(subgrid){
subgrid.parse(custom,“xmlB”);
subgrid.callEvent(“onGridReconstructed”,[])
return false; // block default logic
});