Question

In Kendo scheduler, how can I trigger the edit event of a specific appointment?

I want to directly hotlink the to a certain appointment so it looks like

scheduler.aspx?appointment=1234

and that would include pre-loading appointment #1234 edit modal on page load.

Was it helpful?

Solution

I'm not sure, but I think this can help if you want to fire the edit event manually.

var scheduler = $("#scheduler").data("kendoScheduler"); var event = scheduler.dataSource.at(0); // or at(1234) scheduler.editEvent(event);

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top