| Issue 1036: | Disable click event | |
| 1 person starred this issue and may be notified of changes. | Back to list |
Would like to know how to disable the hability to click an event and redirect to google calendar. Thanks!
Jul 19, 2011
Project Member
#1
adamrs...@gmail.com
Status:
Done
Jul 20, 2011
I'm sorry maybe I didn't get it 'cause I don't know much about jQuery, but I can remove the popup, but what I want is that even if you use the right button and choose to open in other window it won't work. I DON'T want external links... If that's possible! Thanks!
Aug 21, 2011
still not really sure what your asking for, but maybe you just shouldn't use the `url` field of an event object. the presence of that field is what creates the link in the first place
Sep 5, 2012
I edited the "fullcalendar.fullcalendar.js" file in sites/all/modules/fullcalendar and commented out the lines 12 to 17 like :
var options = {
eventClick: function (calEvent, jsEvent, view) {
/* if (settings.sameWindow) {
window.open(calEvent.url, '_self');
}
else {
window.open(calEvent.url);
} */
return false;
},
|
|
| ► Sign in to add a comment |