Categories | Question details Back To List | ||
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; }); |