New to Kendo UI for jQueryStart a free 30-day trial

IsMultiDay

methods

Checks whether the event is equal to or longer then twenty four hours.

Returns:Boolean

return true if event is equal to or longer then 24 hours.

<script>
    var event = new kendo.data.SchedulerEvent({
        id: 1,
        title: "Task1",
        start: new Date("2013/4/4"),
        end: new Date("2013/4/7")
    });

/* The result can be observed in the DevTools(F12) console of the browser. */
    console.log(event.isMultiDay()); //logs 'true'
</script>
Not finding the help you need?
Contact Support