2013-04-29 178 views

回答

22

當您開始fullcalendar時,請不要包含agendayDay和agendaWeek。喜歡的東西

$('#calendar').fullCalendar({ 
    header: { 
     left: 'prev,next', 
     center: 'title', 
     right: 'month' 
    } 
}); 

更新: 爲了擺脫月份按鈕:

$('#calendar').fullCalendar({ 
    header: { 
     left: 'prev,next', 
     center: 'title', 
     right: '' 
    } 
}); 
+0

謝謝,它的工作原理。現在只顯示「月」選項卡。是否有可能刪除該「月份」選項卡,因爲它已經出現這是月視圖,所以不需要這樣的禁用選項卡。 ? – dsi 2013-04-30 05:22:15

+0

更新了我的答案,以說明如何做到這一點。 – tubaguy50035 2013-04-30 13:13:53

+0

@ tubaguy50035它的工作,但如果我只需要顯示月和周視圖,那我該怎麼做?請提供您的建議 – dom 2015-10-08 06:42:19

-2

權:假工作。

$('#calendar').fullCalendar({ 
      header: { 
       left: 'prev,next ', 
       center: 'title', 
       right: false, 
      }, 

    }); 
相關問題