Skip to main content

checkInMarkedTimespan

Description

Checks whether an event resides in a timespan of a specific type

checkInMarkedTimespan: (event: any, timespan: string) => boolean

Parameters

  • event - (required) object - the event object
  • timespan - (required) string - the timespan's type

Returns

  • isIn - (boolean) - true, if the event is in the timespan of the specified type

Example

scheduler.addMarkedTimespan({
start_date: new Date(2013,4,1),
end_date: new Date(2013,7,1),
css: "red_section",
type:"discount"
});

var eventId = scheduler.addEvent({
start_date: "16-05-2013 09:00",
end_date: "16-05-2013 12:00",
text: "Meeting",
holder: "John",
room: "5"
})
...
scheduler.checkInMarkedTimespan(scheduler.getEvent(eventId), "discount"); //->true

Applicable views: Timeline view

Details

note

The method requires the limit plugin to be activated.

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.