angular-ui / ui-calendar

A complete AngularJS directive for the Arshaw FullCalendar.
http://angular-ui.github.io/ui-calendar/
MIT License
1.49k stars 729 forks source link

Can't access to Fullcalendar methods #513

Open finalburner opened 7 years ago

finalburner commented 7 years ago

Hello everyone,

When I do in my controller ::: console.log(uiCalendarConfig.calendars);

It prints

image

I want to use methods of fullcalendar. How can I do It ?

the web suggested : uiCalendarConfig.calendars.fullCalendar('next') uiCalendarConfig.calendars.[myCalendar].fullCalendar('next') .....

But any of theses worked.

HELP ! Urgent please @joshkurz @linkolen @angelix

finalburner commented 7 years ago

resolved ! Just using :

uiCalendarConfig.calendars.myCalendar.fullCalendar('next')

DONE !