我已经使用了免费版的fullcalendar,现在我需要在它上面有多个资源。它的免费版本是否可以做到这一点?如果是,有人有一个例子,它从数据库填充?对于多个资源,我应该使用fullcalendar调度器还是标准的fullcaneldar来完成这项工作
我缺乏c#的经验,但希望下面的使用JavaScript的例子能帮助你。
首先,你可以使用免费版的fullcalendar从你的多个资源中获取所有事件。
第二,这是一个使用多个资源的完整日历示例。
详情请参阅文档
document.addEventListener('DOMContentLoaded', function () {
var calendarEventsEl = document.getElementById('calendar-events');
calendarEvents = new FullCalendar.Calendar(calendarEventsEl, {
headerToolbar: false,
contentHeight: 300,
initialView: 'listUpcoming',
views: {
listUpcoming: {
type: 'listMonth',
duration: { months: 2 },
},
listAll: {
type: 'listYear',
duration: { years: 1 },
},
},
eventDidMount: function (arg) {
...
},
dayHeaderDidMount: function (arg) {
...
},
eventSources: [
~~~~~~~~~~~~~~~
// This is the approach how to get events from multiple resources
{
method: 'POST',
url: '/calendar/get_all_for_events_01/',
extraParams: {
get_type: 'upcoming',
timezone: moment.tz.guess()
}
},
{
method: 'POST',
url: '/calendar/get_all_for_events_02/',
extraParams: {
get_type: 'all',
timezone: moment.tz.guess()
},
}
],
eventSourceSuccess: function (content, xhr) {
...
},
希望这对你有帮助。