| Issue 314: | hide scrollbars | |
| 3 people starred this issue and may be notified of changes. | Back to list |
Hello, I have a small problem. How can I delete scrollbars on week and day? I would like to resize height calendar to auto size (height). How can I do this ?
Feb 5, 2010
Project Member
#1
adamrs...@gmail.com
Status:
Done
Apr 28, 2011
You can do this but it's not ideal. When the user switches to Week view run this (only have to run it the first time):
$('.fc-view-agendaWeek > div > div').css('overflow-y', 'hidden'); $('.fc-agenda-gutter').css('width', 0);
When the user switches to Day view run this:
$('.fc-view-agendaDay > div > div').css('overflow-y', 'hidden'); $('.fc-agenda-gutter').css('width', 0);
Jun 14, 2011
Voting for this as well. Month mode can scale to whatever height is set, but week and day mode should be (optionally) "scroll bar free".
Nov 24, 2011
Agreed, would also like to have it auto-resize to fit the content, rather than having scrollbars.
Sep 19, 2012
Thank you for this work around
$('.fc-view-agendaWeek > div > div').css('overflow-y', 'hidden'); $('.fc-agenda-gutter').css('width', 0);
|
|
| ► Sign in to add a comment |