Check documentation for the latest version of dhtmlxSuite startFastOperations DHTMLX Docs

startFastOperations

starts the fast operation mode

void startFastOperations();

Available only in PRO Edition

Example

mygrid.startFastOperations();
 
for (var i=0; i<1000; i++)
    mygrid.addRow(mygrid.uid(),[i,"new row"]);
 
mygrid.stopFastOperations();

Details

in the fast operation mode events are not generated, some time-consuming actions are applied only once, which allows increasing the performance

Back to top