How can I set Fullcalendar options dynamically

fullcalendar, jquery-plugins

Solution

Can't be done without recreating the calendar.

Update: Can be done in v 2.9: See below

Problem

How can I set the `minTime` and `maxTime` options after the calendar is created? I tried the following, which doesn't work: ``` $('#calendar').fullCalendar('option', 'minTime', 7); $('#calendar').fullCalendar('render'); ```

Original source

Related problems