仅在fullcalendar.io中显示当月的日子和事件
在fullcalendar.io的“Month”视图中,我想仅显示当前月份以及当前月份事件。 但是,目前显示的是从当前日期算起的一个月。
例如:如果今天的日期是2016-20-03 ...
- 什么fullcalendar显示:从:2016-20-03到:2016-19-04
- 我想展示的内容:2016-01-03至2016-31-03
在阅读文档并查找周围我找不到任何变量或设置fullcalendar来实现这一点,所以我必须修改fullcalendar.js
有人已经这样做了吗?
视图
$('#' + engineerId).fullCalendar({
header: false,
views: {
plainMonth: {
type: 'basic',
duration: { days: 31 },
buttonText: 'Month'
},
plainWeek: {
type: 'basic',
duration: { days: 7 },
buttonText: 'Week'
}
},
firstDay: 1,
dayNamesShort: ['S', 'M', 'T', 'W', 'T', 'F', 'S'],
defaultView: 'plainWeek',
theme: true,
viewRender: function (view, element) {
$('#CalendarViewObject').val(view.name);
viewName = view.name;
},
aspectRatio: ratio,
editable: true,
eventLimit: false, // allow "more" link when too many events
events: {
startEditable: false,
durationEditable: false,
url: window.location.href.toString().split(window.location.host)[1] + '/GetEmployeeEvents',
type: 'POST',
data: function () { // a function that returns an object
$("[id^=qtip-]").empty();
$("[id^=qtip-]").remove();
return {
serviceAreaId: serviceAreaId,
employeeId: engineerId,
calendarViewObject: $('#CalendarViewObject').val()
};
},
error: function () {
alert('there was an error while fetching events!');
}
},...
调节器
public JsonResult GetEmployeeEvents(DateTime start, DateTime end, string queueName, string employeeId, string calendarViewObject)
“开始”和“结束”日期由fullcalendar.io设置,这些日期是我想要更改的日期。
非常感谢你,Alvykun
在fullcalendar文档中进行了一些更多的研究之后,我最终设置了以下内容:
$('.calendarClass').fullCalendar('gotoDate',new Date(y, m, 1));
这个技巧和作品!
链接地址: http://www.djcxy.com/p/81283.html上一篇: Show days and events only of the current month in the fullcalendar.io