selects the specified date
date | string| object | a Date object or a string representing a date |
webix.ui({
container:"box",
view:"calendar",
id:"calendar1"
});
$$('calendar1').selectDate(new Date(2012,3,30));
The method is analogous to setValue.
Back to top