Adding horizontal scroll to fullcalendar scheduler

六眼飞鱼酱① 提交于 2020-01-03 08:42:51

问题


I am using Fullcalendar Scheduler, and the problem is when i have many resources, it becomes not good, like this:

The live demo with litle resources: http://fullcalendar.io/js/fullcalendar-scheduler-1.3.3/demos/vertical-resource-view.html

I have an idea, it's adding an horizontal scroll, but i don't know the way, can you guys help me out ? Thank you very much and have a great day.


回答1:


.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%;
} 


来源:https://stackoverflow.com/questions/39130613/adding-horizontal-scroll-to-fullcalendar-scheduler

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!