jquery-week-calendar
jquery-week-calendar copied to clipboard
Event position issues while using Twitter bootstrap
Has anyone successfully implemented the calendar while using Twitter bootstrap? I am having event placement issues and am assuming that there must be some conflict between the bootstrap css and the week calendar css
I'm using it without problems.
dont know if this is still an issue - but it seems to work fine with bootstrap v2
not working with jQuery.weekCalendar v2.0-dev and Bootstrap v2.3.1.
here is the error: Error: TypeError: $calendarContainer.find(...).buttonset is not a function
Solved: Just add button widget support to your custom build (jquery UI)
mreyeros, do you solved the problem? I'm handling with the same problem using bootstrap 3.
The layout is messed up by box-sizing: border-box. A fix is to add the following css after bootstrap css has been loaded:
*, *:before, *:after { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; }
This will break some bootstrap components on the same page more info: http://stackoverflow.com/questions/19109470/twitter-bootstrap-box-sizing-ruined-my-layout
Good "tp", that was the solution if you use bootstrap version 3
Adding the below style on the page helped me solve the layout issue.
table * { -webkit-box-sizing: content-box !important; -moz-box-sizing: content-box !important; box-sizing: content-box !important; }