DhtmlXgrid

im new to use dhtmlxgrid…i want to load data from sql to dhtmlxgridinstead of from xml… how can i do this,pls help

The component is fully client side , so you can 't load data directly from XML , but you can use any kind of server side script, so you will have

    grid.loadXML(“some_url.php”)

and in server side script you can connect to DB and output data in XML format.