Hi,
I’m using DHTMLX Scheduler since some months ago. I use the PHP Connector and CI models to interact with the SQL Server database. Today I’ve discovered a bug in our application, and it wasn’t present in the past.
I discovered the bug adding a new event to the timeline, and after that, trying to delete it. It seems deleted but if I reload the page the event remains, and it is still present in the database. I added that in the app:
scheduler.attachEvent("onEventIdChange", function(old_id,new_id){
console.log(old_id);
console.log(new_id);
});
And I’ve seen that the new_id isn’t the real ID of the event in the database. For example, the eventID of the new event in the database is 43899 (autonumeric key) and the new_id returned by dhtmlx scheduler is 18345.
I don’t know which change have introduced the bug, maybe the latest DHTMLX Scheduler updates? Please, help me to debug that