Show week number in FullCalendar

后端 未结 3 1606
星月不相逢
星月不相逢 2021-01-25 04:09

I\'m looking for a way to show the week number on the agendaWeek view. I\'ve tried this method but without result.

Actually, I need to put the number in the calendar tit

3条回答
  •  执念已碎
    2021-01-25 04:39

    You can turn on week numbers in FullCalendar with this option:

    $("#calendar").fullCalendar({
      weekNumbers: true
    });
    

    Here's a link to the relevant documentation: http://arshaw.com/fullcalendar/docs/display/weekNumbers/

    Btw, if I use "W" in title format, then the current week number is inserted (both in month, week and day). Are you using the latest version of FullCalendar? I'm using v. 1.6.1.

    • Regin

提交回复
热议问题