User can tap any day on mobile scheduler (month view) and it will highlight tapped day in blue colors with .webix_cal_select class, so how I can get such selected date via JS sources?
I use $$(‘scheduler’).setDate(…) to set date, but how I can get selected date? $$(‘scheduler’).getDate() does not exists by some reason…
Hello,
Please try the following:
var date = $$("scheduler").coreData.getValue();
Maria, it works, thank you!