Check documentation for the latest version of dhtmlxSuite enableSmartRendering DHTMLX Docs

enableSmartRendering

enables smart rendering mode

void enableSmartRendering(boolean mode,number buffer);
modebooleanenable/disable the mode
buffernumbercount of rows requested from server by single operation(optional,makes sense only in dynamic loading mode)

Example

//enable smart rendering mode
myGrid.enableSmartRendering(true);
//enable smart rendering mode, 
//set a count of rows requested from the server by single operation
myGrid.enableSmartRendering(true,50);

Back to top