The height of Scheduler has beed set at 500px,then the scrollbar appear on on week view and day view.
How can the scrollbar be defaulted 08:00 on week view or day view?
Hello,
currently this functionality isn’t supported. We’ll add into the next scheduler version.
In this version you can try to use the following:
…
scheduler.click.dhx_cal_tab=function(){
var mode = this.getAttribute(“name”).split("")[0];
scheduler.setCurrentView(scheduler._date,mode);
if(mode==“week”||mode==“day”)
scheduler._els[“dhx_cal_data”][0].scrollTop=scheduler.config.hour_size_px*8;
}
scheduler.init(…);