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