checkInMarkedTimespan

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

boolean checkInMarkedTimespan(object event,string timespan);
eventobjectthe event object
timespanstringthe timespan's type
booleantrue, 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

The method requires the limit plugin to be activated.

Back to top