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.
DayPilot.Scheduler.events.findRecurrent(masterId, start)masterId (string) - id of the recurring event master (the recurrence definition)
start (DayPilot.Date) - starting time of the specific occurrence
Returns a DayPilot.Event object or null. If there are multiple events with the same id, the first one is returned.
const start = new DayPilot.Date("2026-03-10T09:00:00");
const event = dp.events.findRecurrent("123", start);DayPilot.Scheduler.events.find()
Client-Side Event API [doc.daypilot.org]