I have some question about DataProcessor(with dhtmlxGrid)
(1) As for ‘dataProcessor.sendData()’, Could it synchronize call?
(2) While the processing of dataProcessor, other form’s POST be blocked or waited?
For example.
add/delete many rows.
===================
…
…
===================
Thank you.
>>(1) As for ‘dataProcessor.sendData()’, Could it synchronize call?
It can be switched to sync. way, by next code modification
dhtmlxdataprocessor.js, line 192
var a2=new dtmlXMLLoaderObject(this.afterUpdate,this,true);
need to be changed as
var a2=new dtmlXMLLoaderObject(this.afterUpdate,this,false);
>>(2) While the processing of dataProcessor, other form’s POST be blocked or waited?
No. The dataProcessor doesn’ block any other form on page from submiting its data while syncing in progress.