Can I use load(querystring,json) with smartrendering? In otherwords is smartrendering only XML as in loadXML(queryString)?
THX!
Starting from dhtmlxgrid 1.6 you can use smart rendering with json datasource ( in both static and dynamic mode ) , just use
grid.load(url,“json”);
Same as for XML, you need to provide pos and total_count attributes
{
pos:0,
total_count:40000,
rows:[
{ id:1001,
SWEET, thx!