2010-12-03 79 views
0

如何在完整日曆中定義自定義星期範圍。例如,目前它每週給予7天,如'Sun','Mon','Tue','Wed','Thu','Fri','Sat'。但我想顯示14天,如'SunA','MonA','TueA','WedA','ThuA','FriA','SatB','SunB','MonB','TueB',' WedB','ThuB','FriB','SatB'。是否有任何財產,我可以設置我的周範圍14天而不改變FullCalendar.js?如何在FullCalendar中定義自定義星期範圍

回答

0

顯然,這是現在可以通過自定義視圖: http://fullcalendar.io/docs/views/Custom_Views/

如果你想帶像「基本」或「議程」之類的現有視圖類型之一,但使用自定義持續時間(如4天而不是1周或1天的股票)顯示它,請執行以下操作:

$('#calendar').fullCalendar({ 
    header: { 
     center: 'month,agendaFourDay' // buttons for switching between views 
    }, 
    views: { 
     agendaFourDay: { 
      type: 'agenda', 
      duration: { days: 4 }, 
      buttonText: '4 day' 
     } 
    } 
});