最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Fullcalendar hide events only in month view - Stack Overflow

programmeradmin0浏览0评论

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
Add a ment  | 

2 Answers 2

Reset to default 8

You 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
  }
}
发布评论

评论列表(0)

  1. 暂无评论