The Fullcalendar widget is awesome. I\'m using it in a Twitter Bootstrap project, and it looks just about perfect out of the box.
One thing that sticks out, though, is t
To add to the answer from @merv my fullcalendar version does not use a table, so I added this jquery to update the buttons
$('.fc-toolbar').find('.fc-button-group').addClass('btn-group');
$('.fc-toolbar').find('.ui-button').addClass('btn btn-primary');
$('.fc-toolbar').find('.fc-prev-button').html($('').attr('class', 'glyphicon glyphicon-chevron-left'));
$('.fc-toolbar').find('.fc-next-button').html($('').attr('class', 'glyphicon glyphicon-chevron-right'));