DayPilot.Row.events.all() method returns all events for the row.
How can I retrieve the "resource" and "tags" (object with custom properties) from the returned events (DayPilot.Event.data object) ?
I have the following:
dps.onBeforeRowHeaderRender = function(args) {
var isEmpty = args.row.events.isEmpty();
var events = args.row.events.all();
....
}