| Issue 29: | Event URL open in new window | |
| 1 person starred this issue and may be notified of changes. | Back to list |
I would like to be able to have links open in a new window or tab. I'm not sure where I can add the functionality in.
Jun 5, 2009
#1
jstrong...@gmail.com
Jun 5, 2009
glad you got it to work. editing the fullcalendar source is not the best way,
however. it is best to do it as a triggered-event, the "eventClick" option in particular:
eventClick: function(event, element) {
if (event.url) window.open(event.url, "windowname", "width=500,height=500");
return false;
}
Status:
Done
|
|
| ► Sign in to add a comment |