Fullcalendar周标题格式

时间:2015-06-25 14:40:16

标签: javascript fullcalendar

是否可以获取fullcalendar以将单周标题显示为单个字母?因此,而不是默认值:

  星期一星期二星期五星期五星期五星期六

我该如何显示:

  

S M T W T F S

我试过了:

$('#calendar').fullCalendar({
   header: {
   right: '',
   center: 'prev, title, next',
   left: ''
  },
  columnFormat: {
    month: 'd' //also tried 'D' but a number displayed instead
  }
)}

3 个答案:

答案 0 :(得分:2)

你能得到的最短的是两个字母

$('#calendar').fullCalendar({
   header: {
   right: '',
   center: 'prev, title, next',
   left: ''
  },
  columnFormat: {
    month: 'dd' //also tried 'D' but a number displayed instead
  }
});

此库使用时刻库​​,可以找到所有可能的格式here

答案 1 :(得分:1)

从版本2.2.4开始,

你必须像这样修改。

$('#calendar').fullCalendar({
    ...
    ...
    ...,
    views: {
        week: { // name of view
            columnFormat: 'dd'
        }
    }
});

答案 2 :(得分:0)

如果您使用的是dayGridMonth,则在选项apply中,

dayHeaderFormat: {
    weekday: 'narrow'
},