onCellChanged Event - block during loading from XML data

Hi,

In the documentation of onCellChanged Event is written that this event will be called for data set during loading from XML data, or during adding new row as well ) .

Is it possible that this function is not called during loading from XML data and is called afterwords when a user change some value in cell or change values using clipboard functionality[copy/paste].

You need to call this event as an additional function of load method

grid.load(url,function(){ grid.attachEvent("onCellChanged",function(){ //some needed action }); })

Thanks, problem solved