How does one go about reading the options from a fullcalendar object
I'm creating multiple fullcalendar's on a single page and i would like to write a single event render callback such that it can read the options from the fullcalendar instance that it is called from/开发者_运维百科in, things like minTime and maxTime, not sure how to do this.
you can do something like this:
var minTime = $('#calendar').fullCalendar('option', 'minTime');
the option
method isn't really documented, but it should work
精彩评论