2010-01-16 23:29:18 +01:00
|
|
|
|
|
|
|
contentHeight *1.4.2*
|
|
|
|
=====================
|
|
|
|
|
|
|
|
Will make the calendar's content area a pixel height.
|
|
|
|
|
|
|
|
<div class='spec' markdown='1'>
|
|
|
|
Integer
|
|
|
|
</div>
|
|
|
|
|
|
|
|
By default, this option is unset and the calendar's height is calculated by [aspectRatio]().
|
|
|
|
|
|
|
|
Example usage of `contentHeight`:
|
|
|
|
|
|
|
|
$('#calendar').fullCalendar({
|
|
|
|
contentHeight: 600
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2010-01-18 05:20:01 +01:00
|
|
|
Setter
|
2010-01-16 23:29:18 +01:00
|
|
|
------
|
|
|
|
|
2010-01-18 05:20:01 +01:00
|
|
|
You can dynamically set a calendar's contentHeight after initialization:
|
2010-01-16 23:29:18 +01:00
|
|
|
|
|
|
|
$('#calendar').fullCalendar('option', 'contentHeight', 650);
|