Hi, now I am using the mobile scheduler for my project development (http://docs.webix.com/samples/62_scheduler/03_data/03_dynamic_loading.html)
I would like to limit the time range in DayView. (ie. from 08 to 20, instead of 00 to 23)
Does it allow to do so?
maksim
2
After scheduler initialization you can use the next code
var list = $$("scheduler").$$("dayList");
list.config.firstHour = 08;
list.config.lastHour = 20;
list.refresh();
Above code will locate day view, reconfigure it and repaint it.