The findRecurrent() method returns a recurring event occurrence that matches the specified master event ID and start time.
Only applicable to the the ASP.NET WebForms version.
Declaration
DayPilot.Month.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 more events with the same ID, the first one is returned.
Example
const event = dpm.events.findRecurrent(masterId, start);See Also
Client-Side Event API [doc.daypilot.org]
DayPilot