I have a question about DataProcessor(with dhtmlxGrid)
While DataProcessor is processing, Is it possible to know it?
Thank you.
You can set custom function which will be called before and after update action by
a_dataProcessor.setOnBeforeUpdateHandler(function(){
//any code here
return true;
});
a_dataProcessor.setOnAfterUpdate(function(){
//any code here
return true;
});