fires when data synchronization is finished
myTreeGrid.attachEvent("onSyncApply", function(){
//your code here
});
If the grid.sync(store) method was called, the grid will be updated each time when data is changed in the store. The onSyncApply event handler will be called after grid update.
Back to top