My question is how to refetch events to fullCalendar from an iframe? The calendar is on the main page, and the user can edit the calender trough a colorbox popup (iframe). When the user saves the changes i want the calender to reload the events trough the json file.

i have tried:

$('#kalender1', window.parent.document).fullCalendar('refetchEvents');

And its not working.

/Linus

SOLVED

I solved it.. It has to be:

parent.$('#SELECTOR').fullCalendar('refetchEvents')

instead of

$('#SELECTOR', window.parent.document).fullCalendar('refetchEvents');

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

I solved it.. It has to be:

parent.$('#SELECTOR').fullCalendar('refetchEvents')

instead of

$('#SELECTOR', window.parent.document).fullCalendar('refetchEvents');

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.