完整日历周标题格式



是否可以让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
  }
)}

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

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

这个库使用矩库,所有可能的格式都可以在这里找到

版本2.2.4,

你必须这样修改。

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

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

dayHeaderFormat: {
    weekday: 'narrow'
},

您可以使用slotLabelFormat:

slotLabelFormat: [
    { weekday: 'narrow' },
]

所有可能的格式都在文档中:https://fullcalendar.io/docs/v4/date-formatting

相关内容

  • 没有找到相关文章

最新更新