This question is follow up to your answer to my question last week:
lists.rubyonrails.org/pipermail/ … 02247.html
follow the Next In Thread for code someone wrote as a workaround.
Have the dhmtlxGrid team seen this. Do you recommend a workaround.
Thanks,
Peter
Texas Instruments Inc.
Dallas, Texas
In which mode you are using dataprocessor?
When dataprocessor used in non-auto-update mode
grid.setUpdateMode(“off”);
and sync process triggered by
grid.sendData();
updated rows info sent to server one by one ( which means only one request per dataprocessor in one moment of time )
If you are using some other update mode - request will be sent each time as data changed in grid, but it pretty complex to make updates in grid so fast
In common case it possible to switch dataprocessor to send-all-at-once mode , when , instead of separate request for each data row, single request will be sent for all rows
dataProc.setTransactionMode(“POST”,true);