Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Ambrose on Oct 21, 2008 07:50
open dhtmlx forum
dhtmlxajax

Should we be able to use dhtmlxajax for (for example) loading rows into dhtmlxgrid? Is there a complete example of this somewhere?
Answer posted by Support on Oct 21, 2008 08:04
Grid already uses the same lib to load data. The grid.load method uses dhtmlAjax to load data from remote server.
You can do it manually as

dhtlmxAjax.get(any_url,funciton(data){
    grid.parse(data);
});

but it is the same as 
   grid.load(any_url);