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

Calendar

fields

The Calendar widget of the Scheduler. The toolbar Calendar widget allows navigation directly to the chosen date. It will only be available after it has been opened for the first time.

calendar

kendo.ui.Calendar
<input type="button" class="k-button" value="Click to get Calendar" id="btn"/>
  <div id="scheduler"></div>

  <script>
    $("#scheduler").kendoScheduler({
  	date: new Date("2013/6/6")
    });

    $('#btn').on('click', function() {
  	var scheduler = $("#scheduler").getKendoScheduler();
  	var calendar = scheduler.calendar;

  	if (!calendar) {
  		alert("Calendar is yet not initialized.");
  	} else {
  		alert("Current date in calendar: " + calendar.value());
  	}
    });
  </script>
Not finding the help you need?
Contact Support