admin管理员组文章数量:1345906
How do I disable the draggable feature in the below FullCalendar example? While I do not want the "draggable" functionality, I still want the ability to click on a time slot and have the place holder appointment still render as normal.
.html
How do I disable the draggable feature in the below FullCalendar example? While I do not want the "draggable" functionality, I still want the ability to click on a time slot and have the place holder appointment still render as normal.
http://arshaw./js/fullcalendar/demos/selectable.html
Share Improve this question asked Feb 4, 2011 at 21:30 saysay 2,6557 gold badges36 silver badges48 bronze badges6 Answers
Reset to default 4$('#example').fullCalendar({
disableDragging: true
});
thanks to https://stackoverflow./a/7907576/216084
currently not possible to limit the selection to a single slot but here is the issue for it: http://code.google./p/fullcalendar/issues/detail?id=786
Edit fullcalendar.js
and change line 3547
from
var d2 = cellDate(cell);
to
var d2 = cellDate(origcell);
it's not necessary to edit fullcalendar script you can do that like this:
selectAllow: function (e) {
if (e.end.diff(e.start, 'minutes') > 15) {
return false;
}
}
It's for {slotDuration: 15} (minutes in my case), suitable for Scheduler plugin v.3
Quick look at the documentation looks like it's just an option to the constructor:
http://arshaw./fullcalendar/docs/event_ui/disableDragging/
To remove the ability to select multiple days, I modified the file fullcalendar.js (v1.5.3) at line 5019:
Replace this :
trigger('select', null, startDate, endDate, allDay, ev);
By this :
trigger('select', null, startDate, startDate, allDay, ev);
Works well for me.
本文标签:
版权声明:本文标题:javascript - How to disable the drag in FullCalendar but keep the ability to click on a time slot and have the "placeho 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743812565a2543342.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论