Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Spriya on Mar 31, 2008 00:10
open dhtmlx forum
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
Answer posted by Support on Mar 31, 2008 02:11
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.