Hi
I want to get multiple selected events while moving.
this.onEventMove = function (args) { var selectedEvents = me.dp.multiselect.events(); }
but not getting events from the above.
Thank you
This seems to work fine for me:
var dp = new DayPilot.Scheduler("dp"); // ... dp.onEventMove = function (args) { var selectedEvents = dp.multiselect.events(); }; dp.init();
If it still doesn't work, can you please post a more complete example?