admin管理员组

文章数量:1347704

I am very new to fullcalendar and just exploring what is possible. I've seen that you can create custom views and I have created one timeGridSevenDays for a duration of 7 days using a 'timeGrid'. However, I have noticed that the hover over text for today, previous and next buttons is wrong for this or any custom view. It just says 'This' for today as it doesn't know whether the time period is month or week. Is it possible to somehow set the button hints for the buttons for this view?

document.addEventListener('DOMContentLoaded', function() {
  var calendarEl = document.getElementById('calendar');

  var calendar = new FullCalendar.Calendar(calendarEl, {
    locale: 'en-gb',
    initialView: 'dayGridMonth',
    events: '.json',
    editable: true,
    selectable: true,
    headerToolbar: {
          right: 'today prev,next dayGridMonth,dayGridWeek,timeGridSevenDays',
          center: 'title',
          left: '',
    },
    views: {
      timeGridSevenDays: {
        type: 'timeGrid',
        duration: { days: 7 },
        buttonText: 'list',
      }
    }
  });

  calendar.render();
});

TIA

本文标签: Is it possible to set the buttonHints for a fullcalendar custom viewStack Overflow