I read that in the new version of the scheduler it will be possible to scroll the scheduler to any hour. Can anyone explain me how to do that in the beta version? I know that in the current version the following code would work, but I want to know how to do it in the beta.
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(…);
Thanks in adavnce,
Gonzalo
It still not available in latest codebase, in final code it will be possible to define start-scroll position through
scheduler.config.scroll_hour
Nice!, thanks for your reply.
Gonzalo.