Hi
How to know last performed action in "onFullSync" method in scheduler?
Hi
How to know last performed action in "onFullSync" method in scheduler?
Hi,
onFullSync may be triggered after many actions performed in a single request, so it does not provide an action type. Probably you need onAfterUpdate event
dp.attachEvent("onAfterUpdate", function(sid, action, tid, tag){
//custom code here
});
Where action may be ‘updated’, ‘deleted’, ‘inserted’, ‘error’ or a custom type.
docs.dhtmlx.com/api__dataprocess … event.html