On Event Save

i want to edit the event by using double click for that which method i want to use
i am using this method for saving the events .
scheduler.attachEvent(“onEventSave”, function(id, data) {

Can you tell me which method i want to use.

i want to edit the event by using double click

scheduler.config.details_on_dblclick = true;

i can use to edit that one , i can write like this

scheduler.attachEvent("details_on_dblclick, function(id)){
that means what the id saved in my DB is get to the function and edit the previous event
and saved in Db with updated event

There are two events

onEventChanged
onEventAdded

which can be used for data saving.

By the way, we have sample of data saving for common platforms

docs.dhtmlx.com/doku.php?id=dhtm … _platforms