Check documentation for the latest version of dhtmlxSuite onSyncApply DHTMLX Docs

onSyncApply

fires when data synchronization is finished

void onSyncApply();

Example

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

Details

If the combo.sync(store) method was called, the combo will be updated each time when data is changed in the store. The onSyncApply event handler will be called after combo update.

Back to top