gpt4 book ai didi

Jquery FullCalendar 更改日历上特定事件的可编辑属性

转载 作者:行者123 更新时间:2023-12-03 22:56:54 24 4
gpt4 key购买 nike

我目前正在使用 jQuery FullCalendar 来创建日程安排应用程序。在我的应用程序中,我只需要为不是由登录用户创建的事件设置 editable=false ;然而,由登录用户创建的事件应该具有 editable= true。任何人都可以建议我如何将 FullCalendar 中事件的少数可编辑属性设置为 false 并将少数事件设置为 true。

最佳答案

将主可编辑属性设置为 false,并将您想要编辑的事件的可编辑属性设置为 true。

$('#calendar').fullCalendar({        
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
editable: false, // set this false
events: [
{
title: 'This must be editable',
start: new Date('11/1/2011'),
editable:true
},
{
title: 'This is non editable',
start: new Date('11/1/2011'),
end: new Date('11/1/2011')
}

]
});

});

http://jsfiddle.net/G6K6Y/94/

关于Jquery FullCalendar 更改日历上特定事件的可编辑属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7963122/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com