| Issue 722: | aspectRatio supports view-option-hash | |
| 1 person starred this issue and may be notified of changes. | Back to list |
It would be nice to define aspectRatio for each view.
For exemple I set aspectRatio to 0 for the view agendaWeek.
But when I change to month it's too high.
I would like to do something like this :
aspectRatio: {
month:1.35,
agendaWeek:0
}
Currently I do this :
calendar = $('#calendarName').fullCalendar(
viewDisplay: function(view) {
if (calendar != null) {
if (view.name == 'month') {
calendar.fullCalendar('option', 'aspectRatio', 1.35);
} else {
calendar.fullCalendar('option', 'aspectRatio', 0);
}
}
},
);
Jan 1, 2011
(No comment was entered for this change.)
Status:
Duplicate
Mergedinto: 582 |
|
| ► Sign in to add a comment |
Status: Maybe