Fullcalendar with Twitter Bootstrap?

后端 未结 3 843
梦谈多话
梦谈多话 2021-01-31 10:03

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

3条回答
  •  情歌与酒
    2021-01-31 10:25

    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'));
    

提交回复
热议问题