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
版权声明:本文标题:Is it possible to set the buttonHints for a fullcalendar custom view? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743839658a2548042.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论