2010-01-16 23:29:18 +01:00
|
|
|
|
|
|
|
|
|
getView *1.4.2*
|
|
|
|
|
===============
|
|
|
|
|
|
|
|
|
|
Returns the [View Object]() for the current view.
|
|
|
|
|
|
|
|
|
|
<div class='spec' markdown='1'>
|
2010-01-18 05:20:01 +01:00
|
|
|
|
.fullCalendar( 'getView' ) -> [View Object]()
|
2010-01-16 23:29:18 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
This is useful if you want to get information about the calendar’s title or start/end dates.
|
|
|
|
|
|
|
|
|
|
Example Usage:
|
|
|
|
|
|
|
|
|
|
var view = $('#calendar').fullCalendar('getView');
|
|
|
|
|
alert("The view's title is " + view.title);
|