Skip to main content

setEventStartDate

warning

The method is deprecated.

Description

Sets the event's start date

setEventStartDate: (id: string, date: Date) => void

Parameters

  • id - (required) string - the event's id
  • date - (required) Date - the new start date of the event

Example

var eventId = scheduler.addEvent({
start_date: new Date(2013,1,10),
end_date: new Date(2013,1,13),
text: "Conference"
});
...
scheduler.getEvent(eventId).start_date = new Date(2013,1,09);
scheduler.updateEvent(eventId);
Need help?
Got a question about the documentation? Reach out to our technical support team for help and guidance. For custom component solutions, visit the Services page.