How to capture the Ajax response after editing/saving ...

Hello guys,

Can anybody help me on how to capture the Ajax response after editing/saving an event? I’m referring to the following as an example:

<?xml version='1.0' ?>

Currently I am using the events which are always 1st to execute before the update/saving.

Many thanks,
willowdan

You can use events of dataprocessor

dp.attachEvent("onAfterUpdate", function(sid, action, tid, tag){ ... });

Many thanks, I’ll check this out.

Cheers!

For those who may need clarifications, the following event may both be used for update and insert actions. I just figured that out after a few hours of searching for an “onAfterInsert” event, which doesn’t exist, hehehehe :

dp.attachEvent(“onAfterUpdate”, function(sid, action, tid, tag){

});

Cheers!
willowdan