Does loadXMLString support the Dynamic Loading feature where dhtmlxGrid will only load x number of rows and then load more as the user scrolls? If so, is there any sample code?
The dynamical loading support only from external XML sources ( through loadXMLString )
dhtmlx.com/docs/products/dhtmlxG … 6974295000
It is not complex to update code , to use loading from XML string instead of loading from external source
dhtmlxgrid_srnd.js , line 367
this.xmlLoader.loadXML(this._dload+((this._dload.indexOf("?")!=-1)?"&":"?")+“posStart=”+start+"&count="+count+"&sn="+(new Date()).valueOf());
can be replaced with
var xml=generate_xml_for(start,count);
this.xmlLoader.loadXMLString(xml);