initialize subgrid with dataprocessor object

Hello,



who can explain me how should I modify dhtmlXGridObject.prototype._sub_row_render of “dhtmlxgrid_excell_sub_row.js”

in order to initialize subgrid with dataprocessor object?



Thanks.

dhtmlXGridObject.prototype._sub_row_render={
    …
    “grid”:function(that,d,td,c){
           td._sub_grid= new dhtmlXGridObject(d);
             …
           td._sub_grid.loadXML(c,function(){
                var dp=new dataProcessor(url);
                dp.init(td._sub_grid);
                …