dhtmlxgrid

Hi,

I’ve the following code









    CAM 3.2 - Client Master

    

    

    

    

    





    

    

    

    

    

    



    

        

        

    

        

    





    

    

    

    

    



















    

        

    



            


            


        
















in the above if I remove



alert(‘Loading data…’);



the page loads normally other wise i get an error saying this.obj.firstChild is

As far as I can understood you are loading configuration and data by separate xml request, right?
In such case your code need to be organized as

mygrid.loadXML(“clientcolumns.xml”,function(){
mygrid.loadXML(“L client.xml”);
});
// mygrid.init(); - not necessary at all




Thanks,



That worked.