Is there a way to get an event on right/left clicking a resource in the left pane of the sceduler - where I can get the ID of the clicked resource?
I have my Scheduler:
var dp = $("#dp").daypilotScheduler({
startDate: new DayPilot.Date(getFormattedDate()),
cellGroupBy: "Month",
timeHeaders: [
{ groupBy: "Month", format: "MMM yyyy" },
{ groupBy: "Cell", format: "ddd d" }
],
days: 365,
cellDuration: 1440, // one day
treeEnabled: true
});
And methods like
"dp.onEventMove"
I would like something lin
"dp.onResourceClick" in Javascript.