jquery - Change the height of fullcalendar display? -
how change height of main fullcalendar , have else fit calendar?
you can set @ initialization of calendar or modify dynamically using setter.
from documentation
$('#calendar').fullcalendar({ height: 650 });
or using setter:
$('#calendar').fullcalendar('option', 'height', 700);
Comments
Post a Comment