Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Garfield on Jan 14, 2008 17:20
open dhtmlx forum
dhtmlxGrid DataProcessor

I have a question about DataProcessor(with dhtmlxGrid)

While DataProcessor is processing, Is it possible to know it?


Thank you.
Answer posted by Support on Jan 15, 2008 01:48
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;
    });