shows the calendar according to the year and month set in the specified date
date | string|Date | a Date object or a string representing a date |
webix.ui({
view:"calendar",
id:"calendar1"
});
$$('calendar1').showCalendar(new Date(2011,5,13));
Note that the method doesn't select the specified date, so specifying the day is optional.