Hi all,
I’m currently in the need to implement a calendar in rails.
It should be able to present a year, month and day view.
The events in these 3 views should be able to be opened, on click, to
view
the information and/or edit it (according to restrictions).
The events will belong to users. One requirement is that users could
filter
which other users events they want to see (different colors for each
user
will be a nice to have).
After some reading, I finish up with these two options (open to more
suggestions):
- GitHub - elevation/event_calendar: Show multiple, overlapping events across calendar days and rows. Rails plugin.
- Using FullCalendar, something like this for example:
GitHub - vinsol/fullcalendar_rails: Using FullCalendar jQuery plugin(http://arshaw.com/fullcalendar/) with Rails backend. You can create, edit, delete, reschedule, resize events.
I will be very thankful if anyone could recommend a gem/way to go. Any
opinion are welcome.
Thanks.