Open kennethdevik opened 13 years ago
I had the same problem, I've solved it by adding those lines in my model and my controller (check the readme) :
Controller: @first_day_of_week = 1 @event_strips = Event.event_strips_for_month(@shown_month, @first_day_of_week)
Helper/View calendar options:
:first_day_of_week => @first_day_of_week
Now it works fine !
The title says it all I think. Just started a new rails project with event_calendar, and suddenly all my events disappeared from the calendar view. I tracked it down to the :first_day_of_week => 1 setting I added in event_calendar_opts. I'm also using the use_all_day feature, if that might have something to do with this problem.