• max (value) : Date
    Gets/Sets the max value of the calendar.

    Example

    // get a reference to the calendar widget
    var calendar = $("#calendar").data("kendoCalendar");
    
    // get the max value of the calendar.
    var max = calendar.max();
    
    // set the max value of the calendar.
    calendar.max(new Date(2100, 0, 1));

    Parameters

    value: Date | String
    The max date to set.
    Returns
    Date The max value of the calendar.
  • min (value) : Date
    Gets/Sets the min value of the calendar.

    Example

    // get a reference to the calendar widget
    var calendar = $("#calendar").data("kendoCalendar");
    
    // get the min value of the calendar.
    var min = calendar.min();
    
    // set the min value of the calendar.
    calendar.min(new Date(1900, 0, 1));

    Parameters

    value: Date|String
    The min date to set.
    Returns
    Date The min value of the calendar.
  • navigate (value, view)
    Navigates to view

    Example

    // get a reference to the calendar widget
    var calendar = $("#calendar").data("kendoCalendar");
    // navigate to the desired date
    calendar.navigate(value, view);

    Parameters

    value: Date
    Desired date
    view: String
    Desired view
  • navigateDown (value)
    Navigates to the lower view

    Example

    // get a reference to the calendar widget
    var calendar = $("#calendar").data("kendoCalendar");
    // navigate down
    calendar.navigateDown(value);

    Parameters

    value: Date
    Desired date
  • navigateToFuture ()
    Navigates to the future

    Example

    // get a reference to the calendar widget
    var calendar = $("#calendar").data("kendoCalendar");
    // navigate to future
    calendar.navigateToFuture();
  • navigateToPast ()
    Navigates to the past

    Example

    // get a reference to the calendar widget
    var calendar = $("#calendar").data("kendoCalendar");
    // navigate to past
    calendar.navigateToPast();
  • navigateUp ()
    Navigates to the upper view

    Example

    // get a reference to the calendar widget
    var calendar = $("#calendar").data("kendoCalendar");
    // navigate up
    calendar.navigateUp();
  • value (value) : Date
    Gets/Sets the value of the calendar.

    Example

    // get a reference to the calendar widget
    var calendar = $("#calendar").data("kendoCalendar");
    
    // get the value of the calendar.
    var value = calendar.value();
    
    // set the value of the calendar.
    calendar.value(new Date());

    Parameters

    value: Date|String
    The date to set.
    Returns
    Date The value of the calendar.