Option to hide day numbers/events/cells for prev/next months
See original GitHub issueOriginally reported on Google Code with ID 166
For example, October 2009 starts on a Thursday so you also see September 27
thru 30 at the beginning of the calendar. Is there any way to turn this off
so those cells would simply be blank?
Reported by snh9905
on 2009-11-04 17:33:55
Imported with 20 stars.
Issue Analytics
- State:
- Created 8 years ago
- Comments:26 (20 by maintainers)
Top Results From Across the Web
No results found
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Released in v3.3.0 Blog post: https://fullcalendar.io/blog/2017/03/fullcalendar-33-and-scheduler-16/
Setting: https://fullcalendar.io/docs/display/showNonCurrentDates/ (set it to
false
)The styling is a bit different that I originally depicted. Hope that’s okay. Still stylable via CSS.
For those who are looking for a temporary fix (for v2), here’s the solution:
First of all, we need to ensure that only events for this month are being rendered
You will need this method in javascript as well to extract the month which is used in eventRender method above:
Next we need to ensure that this is not the same case for Week view since it can be an overlap across 2 different months
With the above 2 functions in place, you will achieve the result!