Hello Mario,
Indeed the scheduler updates in this case which will close any newly created popups.
You can use setTimeout to prevent the scheduler from closing the popup:
e.preventDefault();
setTimeout(function() {
var scheduler = $("#scheduler").data("kendoScheduler");
scheduler.addEvent( { title: "New event", start: e.event.start, end: e.event.end })
});
Here is a live demo that shows that:
http://dojo.telerik.com/@korchev/AtoMa
Regards,
Atanas Korchev
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework -
download Kendo UI now!