angular-ui / ui-calendar

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

Get Title of the calendar #467

Open sureshkoduri opened 7 years ago

sureshkoduri commented 7 years ago

Hi, I want to get the title of the calendar dynamically. Is there any method or Is it possible? Please help me.

vovopap commented 7 years ago

I was also having this issue. I used viewRender to update my scope varaible

options: { viewRender: function (view) { vm.calendarTitle = view.title; } }