I'm using scheduler. If I have an event id, and would like to change a few custom tags for that event. How do I do that in Javascript?
You can find the event using events.find() method: https://api.daypilot.org/daypilot-scheduler-events-find/
The original data object is accessible as e.data, so the tags can be accessed as e.data.tags.
To reload the event, call events.update():
var e = dp.events.find("123"); e.data.tags.customField = "New Value"; dp.events.update(e);
See also: https://api.daypilot.org/daypilot-event-data/
Ok thanks