Check documentation for the latest version of dhtmlxSuite onSyncApply DHTMLX Docs

onSyncApply

fires when data synchronization is finished

void onSyncApply();

Example

myTreeGrid.attachEvent("onSyncApply", function(){
    //your code here
});

Details

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