Hi,
I am using onEventAdded to pass the data to the DB and for some reason onEventAdded is invoked twice (sure, data added twice into the DB). After I click Save it only shows one event but when refreshing the page shows the two events (same data, of course).
Nothing fancy on my code:
[code] scheduler.attachEvent(“onEventAdded”, function(event_id, event_object) {
var convert = scheduler.date.date_to_str("%Y-%m-%d %H-%i-%s");
$.ajax({
async : false,
url : "schrunner?action=NEW",
type : "POST",
data : {
start_date : convert(event_object.start_date),
end_date : convert(event_object.end_date),
text : event_object.text,
section_id : event_object.section_id,
},
dataType : "text"
});
return true;
});[/code]
Did somebody faced this issue?
Thanks!