Documentation

selectDate

selects the specified date

void selectDate(string| object date);

Parameters

datestring| objecta Date object or a string representing a date

See also

Example

webix.ui({
    container:"box",
    view:"calendar",
    id:"calendar1"
});
$$('calendar1').selectDate(new Date(2012,3,30));

Details

The method is analogous to setValue.

Back to top