date

specifies the year and month that will be shown in the calendar after initialization

Date| string date;

Example

webix.ui({
    weekHeader:true,
    date:new Date(2012,3,16),
    view:"calendar"
});

Related samples

Details

The specified date won't be selected in the calendar, so specifying the day is optional.

Value can be either a string formatted with the current parseFormat or a Date object.

See also
Back to top