The findRecurrent() method returns a specific occurrence of a recurring event from the Scheduler event collection.
This only applies to ASP.NET WebForms, ASP.NET MVC and Java versions.
Declaration
DayPilot.Scheduler.events.findRecurrent(masterId, start)Parameters
masterId(string) - id of the recurring event master (the recurrence definition)start(DayPilot.Date) - starting time of the specific occurrence
Return Value
Returns a DayPilot.Event object or null. If there are multiple events with the same id, the first one is returned.
Example
const start = new DayPilot.Date("2026-03-10T09:00:00");
const event = dp.events.findRecurrent("123", start);See Also
DayPilot.Scheduler.events.find()
Client-Side Event API [doc.daypilot.org]
DayPilot