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

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -