makes the specified date displayed in the calendar
date | string| object | a Date object or a string representing a date |
webix.ui({
container:"box",
view:"calendar",
id:"calendar1"
});
$$('calendar1').showCalendar(new Date(2011,5,13));
Note, the method doesn't selects the specified date.
Back to top