date

initial date to display

Date date;

Example

let today = new Date(2020, 10, 12);
let tomorrow = webix.Date.add(today, 1, "day", true); 
 
webix.ui({
  view: "scheduler",
  date: today,
  url: "https://docs.webix.com/calendar-backend/",
  on: {
    onChange: function(date) {
      if(date === tomorrow) {
        // do smth
      }
    }
  }
});


Default value:

current date
See also
Back to top