我有FullCalendar插件,效果很好 我通过这段代码从Json对象读取数据
function press1() {
var employees = {
events: []
};
for (var i in DonationRequests) {
var item = DonationRequests[i];
employees.events.push({
"title": "collectorID" + item.CollectorID + " ",
"start": eval(item.CreateDate.replace(/\/Date\((\d+)\)\//gi, "new Date($1)"))
});
}
$('#calendar').fullCalendar(
employees
);
}
换句话说 在我的代码中,我只显示从数据库读取的数据, 但我需要让日历显示4个红色圆圈,即使它没有在数据库中找到,如果它在白天创建了一个对象颜色为绿色
更多解释: -
Fullcalendar插件显示来自事件的点,我从数据库填充事件,但我的数据库包含一些日期为2016-05-31
和2016-05-17
因此日历将只显示这两个日期,但我需要显示所有日期和刚才将从数据库传入的颜色变为绿色
我找到了这个链接
FullCalendar js - To add code html in all day cells II
但它对我不起作用,有什么建议吗?
请帮忙
答案 0 :(得分:0)
添加自定义事件css
.fc-event {
width: 10px;
border-radius: 12px;
}
您可以根据需要进行修改