I want time intervals, occupied by events, to be not clickable. If I just set event property editable to false, it does not help: I am still able to click near that event. Any way to make all the time interval, occupied by the event not clickable? Maybe somehow stretch its width to cover the whole day (actually, this would be a desirable behaviour)?
| ||||
|
show 6 more comments
feedback
|
|
This code will fire if a day is occupied by an event. So in theory you can block a click by doing return false; in that logic. http://jsfiddle.net/ppumkin/2QAY4/ The code that does the magic needs jquery. and you need this piece of code.
| ||||
|
feedback
|
|
Well, you can stretch the events to the full height of a day, using the following CSS:
But I would call that a workarround. fullCalendar is designed to display multiple events on a day. Hence the bars are small enough to display overlapping events. A better solution for a booking system would be a calendar that does not support overlapping events. Unfortunately there is none I could recommend. | |||||||
feedback
|
/api/calendar/busy/timereturns a json with events. My calendar displays those events correctly, but it opens a popup if I click on the day near those events. Instead, I want that time to be completely busy: clicking only works if you click on part of the day, that does not have a calendar entry already. – folone May 20 '11 at 13:19