What day or month am I looking at?

How get the month that you can visually see in the Scheduler?

After you initialize scheduler or in my case myScheduler, the below code works:
var newDate = “”
$$(“myScheduler”).getState().$observe(“date”, v => {
newDate = webix.i18n.dateFormatStr(v);
});

1 Like

Yes, you are right. The current date is stored in the date property of the reactive state.