Check documentation for the latest version of dhtmlxSuite stopFastOperations DHTMLX Docs

stopFastOperations

turns off the fast operation mode, needs to be executed to normalize the view

void stopFastOperations();

Example

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

Back to top