本文介绍了FullCalendar - 在议程视图(每周或每天)内仅显示'allDay'插槽的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的应用程序仅处理全天事件,所以我希望能够仅显示议程视图的allDay部分。请参阅下面的截图。我想隐藏以红色突出显示的区域。
日历小部件:并且只有开始日期才有你的活动
{
title:'All Day Event',
start:new Date(y,m,d)
}
My application only deals in full day events, so I'd like to be able to only display the allDay section for agendaViews. See screen shot below. I want to hide the areas highlighted in red.
Calendar widget: http://arshaw.com/fullcalendar/
Screens:
解决方案
You overcomplicated it. Check the basicViews, http://arshaw.com/js/fullcalendar-1.6.4/demos/basic-views.html and have your events only with start date
{
title: 'All Day Event',
start: new Date(y, m, d)
}
这篇关于FullCalendar - 在议程视图(每周或每天)内仅显示'allDay'插槽的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!