在FullCalendar日添加更多字段/数据
我正在使用FullCalendar JQuery插件开发一个Web应用程序,以显示每天在公司中工作人员的缺席/存在。
我需要在每天显示几种类型(或字段)的信息。 例如,我想显示每一天:标题(例如“约翰缺席”)和百分比(例如,“95%帮助”)。 我希望这个百分比在每天的框的右下角以不同的格式显示。
据我所见,描述事件的可能字段基本上是这些:
events: [ { title: 'John is sick', start: '2013-11-19', allDay: true }, { title: 'Mike is on vacation', start: '2013-11-21', end: '2013-11-26', allDay: true } ]
有没有办法在FullCalendar日添加更多字段(如协助的百分比)?
编辑:感谢Henrique C的回答,我设法做到了。 只是为了完成一点我想补充的答案,除了做Henrique在答案中所说的,还有必要做这样的事情:
$('#calendar').fullCalendar({ events: [ { title: 'My Event', start: '2010-01-01', description: 'This is a cool event' } // more events here ], eventRender: function(event, element) { element.qtip({ content: event.description }); }
});
非标准字段这是从Fullcalendar网站获取的。
除上述字段外,您还可以在每个事件对象中包含您自己的非标准字段。 FullCalendar不会修改或删除这些字段。 例如,开发人员通常包含用于回调的描述字段,例如eventRender。
您可以添加所需的任何字段,fullcalendar不会更改它们。
events: [ { title: 'John is sick', start: '2013-11-19', allDay: true, description: 'Hurrayyyyyyyyyy', myotherspecialfield: ':P' }, { title: 'Mike is on vacation', start: '2013-11-21', end: '2013-11-26', allDay: true, description: 'Hurrayyyyyyyyyy' myotherspecialfield: ':P' } ]
- 如何使用arshaw fullcalendar v2.3.0在agendaDay视图中灰显非工作日
- 通过外部拖放向Fullcalendar添加事件时,item不会获取id
- 设置Fullcalendar单元格背景颜色
- 需要在事件时间之前显示事件标题(fullcalendar)
- 将自定义参数添加到fullcalendar请求
- Jquery FullCalander没有加载弹出窗口
- FullCalendar – Google日历活动+ eventRender
- FullCalendar – JSON源不起作用,但直接使用JSON数据
- 使用addEventSource时,FullCalendar v.2.2.6’hasTime’未定义错误