Some of my events seem to be working but others are not - I wonder if there has been a change to some of the events since the documentation was written?
I copied this event handler from here docs.dhtmlx.com/scheduler/api__s … event.html
scheduler.attachEvent(“onCellDblClick”, function (x_ind, y_ind, x_val, y_val, e){
//any custom logic here
alert(e.text);
});
but when I double click on a cell, the code does not fire (the alert does not happen, a stop point inside this function does not fire)
However, in the exact same page the following event (declared AFTER the one above) does fire properly
//save an appointment onEventSave
scheduler.attachEvent(“onEventSave”, function(id, data) {
…}