start-/stopFastOperations and forEachRow

Hello,

is it possible that startFastOperations() and stopOperations() not work together with forEachRow()?
Simply code which not work, ‘dhtmlxgrid_fast.js’ is inserted:
mygrid.startFastOperations();
mygrid.forEachRow(function(id){ …do something… });
mygrid.stopFastOperations();

I never come in the function.

This works:
mygrid.startFastOperations();
for (var i = 0; i < mygrid.getRowsNum(); i++)
{ …do something…}
mygrid.stopFastOperations();

I didn’t find any hint in your online help about this…

Regards, Carsten

This is known limitation. forEachRow() method doesn’t work with fast operations extension.

And where can i find it (in documentation)? Not here docs.dhtmlx.com/doku.php?id=dhtm … erations&s[]=startFastOperations

Thank you for your note. We’ll fix documentation as soon as possible