将水平滚动添加到fullcalendar调度程序

Duy*_*ang 7 scheduler fullcalendar

我正在使用Fullcalendar Scheduler,问题是当我有很多资源时,它变得不好,就像这样: fullcalendar调度程序问题

具有litle资源的现场演示:http://fullcalendar.io/js/fullcalendar-scheduler-1.3.3/demos/vertical-resource-view.html

我有一个想法,它正在添加一个水平卷轴,但我不知道的方式,你们可以帮助我吗?非常感谢你,祝你有个美好的一天.

小智 5

.fc-view-container { 
  overflow-x: scroll; 
}
.fc-view.fc-agendaDay-view.fc-agenda-view{
  width: 500%;
}
/* **For 2 day view** */
.fc-view.fc-agendaTwoDay-view.fc-agenda-view{
  width: 500%;
} 
Run Code Online (Sandbox Code Playgroud)


Rob*_*ias 5

使用此配置选项的组合:

dayMinWidth: 150,
stickyFooterScrollbar : true,
Run Code Online (Sandbox Code Playgroud)
  • dayMinWidth :保证水平标题可见。
  • StickyFooterScrollbar :保证水平滚动条可见。