My problem is hidding events in a specific view. I need to hide events only in month view. Because in month view i have set on day click to redirect to the specific day in day view. and have colored days which depends on the events.
So i need that for better looking month view, with colored days only. and when i click on a day go to that and then appear all events normally.
I tried with eventLimit but with 0 value show all events.
Any idea?
Thanks
My problem is hidding events in a specific view. I need to hide events only in month view. Because in month view i have set on day click to redirect to the specific day in day view. and have colored days which depends on the events.
So i need that for better looking month view, with colored days only. and when i click on a day go to that and then appear all events normally.
I tried with eventLimit but with 0 value show all events.
Any idea?
Thanks
Share Improve this question asked Oct 13, 2015 at 11:01 dpapatsarouchasdpapatsarouchas 1911 gold badge3 silver badges16 bronze badges 2- Let the guessing game begins – Java_User Commented Oct 13, 2015 at 11:01
- im searching if is there any function in fullcalendar that helps but nothing till now.. – dpapatsarouchas Commented Oct 13, 2015 at 11:03
2 Answers
Reset to default 8You can use css in order to hide events in month view only.
Code:
.fc-month-view .fc-event-container{
display: none;
}
Demo: http://jsfiddle/IrvinDominin/ecjvb8b7/
i'm using this method to hide events of specified view because sometimes its hard to update css
eventRender: function(event, element, view) {
if(view.type == 'month') {
$(element).css("display", "none");
} else {
// Do nothing
}
}