2015-04-20 33 views
4

我的fullcalendar的默認視圖是月份我想更改從月的視圖too agendaDay on按鈕外部按鈕單擊。我想知道有任何inbuild函數可以在點擊按鈕時進行更改。如何更改fullcalendar上的默認視圖點擊

$('#calendar').fullCalendar({ 
      header: { 
       left: 'prev,next today', 
       center: 'title', 
       right: 'month,agendaWeek,agendaDay' 
      }, 
      defaultDate: '2014-06-12', 
      defaultView: 'month', 
      editable: true, 
      events: [ 
       { 
        title: 'All Day Event', 
        start: '2014-06-01' 
       }, 
       { 
        title: 'Long Event', 
        start: '2014-06-07', 
        end: '2014-06-10' 
       }, 
       { 
        id: 999, 
        title: 'Repeating Event', 
        start: '2014-06-09T16:00:00' 
       }, 
       { 
        id: 999, 
        title: 'Repeating Event', 
        start: '2014-06-16T16:00:00' 
       }, 
       { 
        title: 'Meeting', 
        start: '2014-06-12T10:30:00', 
        end: '2014-06-12T12:30:00' 
       }, 
       { 
        title: 'Lunch', 
        start: '2014-06-12T12:00:00' 
       }, 
       { 
        title: 'Birthday Party', 
        start: '2014-06-13T07:00:00' 
       }, 
       { 
        title: 'Click for Google', 
        url: 'http://google.com/', 
        start: '2014-06-28' 
       } 
      ] 
     }); 

    }); 

回答

0

在腳本中添加該代碼。它會將默認視圖從月份更改爲議程日期。

defaultView: 'agendaDay' 
相關問題