weekNumbersWithinDays在fullcalendar v5中不起作用

时间:2020-09-09 06:36:47

标签: javascript reactjs fullcalendar

我正在使用ReactJS中的fullcalendar.io库来开发日历视图,我想在单独的列而不是图像中的第一列中显示星期数。

enter image description here

在v4文档中,有一个选项可以使用weekNumbersWithinDays在第一列中显示几周,但在v5 doc中似乎缺少该选项。

有人可以建议我在第一栏中显示周数的方法吗?

这是我现有的代码和codepen来演示此问题:

<FullCalendar
    plugins={[dayGridPlugin, timeGridPlugin, customViewPlugin]}
    initialView="dayGridMonth"
    fixedWeekCount={false}
    headerToolbar={false}
    themeSystem='bootstrap'
    events={this.props.calendarEvents}
    eventContent={this.renderEventContent}
    eventDidMount={(info) => ReactTooltip.rebuild()}
    dayMaxEventRows={true}
    weekNumbers={true}
    weekNumbersWithinDays={false}      // THIS IS NOT WORKING
    weekText='Week '
    views={{
        dayGridMonth: {
            dayMaxEventRows: 3,
        },
        timeGridWeek: {
            dayMaxEventRows: 3,                
        }
    }}
    height="auto"
    ref={this.props.calendarRef} />

0 个答案:

没有答案