如何为已经添加的JSON事件添加readonly(没有调整大小,拖动或其他任何内容)?
此外,我感兴趣的是能够添加一个设置或某些内容,这些内容会删除或阻止在某些日期添加新事件,即星期日和星期五。
我需要在日历事件中添加readonly选项,我的json数据如下所示:
events:[{"id":10182,
"start":"2009-05-03T12:15:00.000+10:00",
"end":"2009-05-03T13:15:00.000+10:00",
"title":"Lunch with Mike"
},
据我所知,事件只读取事件对象中必须有readOnly : true
值,即
events:[{"id":10182,
"start":"2009-05-03T12:15:00.000+10:00",
"end":"2009-05-03T13:15:00.000+10:00",
"title":"Lunch with Mike",
readOnly : true
},
但它不起作用,我做错了什么?
答案 0 :(得分:2)
同样的问题在于解决方案
Jquery Week Calendar Google Group
以下是Gildone Mendes Anacleto Junior在该页面上的有用代码片段:
$('#calendar').weekCalendar({
draggable : function(calEvent, $event) {
return calEvent.readOnly != true;
// You also can use return false;
},
resizable : function(calEvent, $event) {
return calEvent.readOnly != true;
// You also can use return false;
}
});