Documentation

showCalendar

makes the specified date displayed in the calendar

void showCalendar(string| object date);

Parameters

datestring| objecta Date object or a string representing a date

See also

  • articles
  • Example

    webix.ui({
        container:"box",
        view:"calendar",
        id:"calendar1"
    });
    $$('calendar1').showCalendar(new Date(2011,5,13));

    Details

    Note, the method doesn't selects the specified date.

    Back to top