Creating a Backpack-like Calendar in Rails - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T17:52:16Zhttp://stackoverflow.com/feeds/question/247656http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/247656/creating-a-backpack-like-calendar-in-rails4Creating a Backpack-like Calendar in RailsGabe Hollombe2008-10-29T17:19:46Z2009-12-15T22:41:49Z
<p>What are the current best practices in the Rails world for displaying a calendar month view with event items bound to the days in the month (like in Backpack or Google Calendar, for example)?</p>
<p>I don't need anything like fancy stuff like drag and drop support. I'm just looking for code to let me get a list of events in my controller and somehow expose them as entries in a monthly calendar display view (maybe with class names on the HTML elements to allow me to display different types of events differently, or maybe to display events from multiple calendars).</p>
<p>There's the <a href="http://oldwiki.rubyonrails.org/rails/pages/DynamicCalendarHelper" rel="nofollow">Dynamic Calendar Helper</a> that was created a few years ago, which very well might still work just fine for me, but I'm just wondering if I should be looking at other plugins, too.</p>
<p>Other possibilities I've found so far:</p>
<ul>
<li><a href="http://github.com/search?q=rails+calendar" rel="nofollow">A few possible contenders</a>
(judging from their descriptions) on
GitHub</li>
<li><a href="http://joyent.com/connector/" rel="nofollow">Joyent Connector</a>, which is now
open source, has calendar
capabilities</li>
</ul>
<p>So, can you point me in the right direction as to what folks are using to output monthly calendars with data these days?</p>
http://stackoverflow.com/questions/247656/creating-a-backpack-like-calendar-in-rails/249627#2496271Answer by Cameron McCloud for Creating a Backpack-like Calendar in RailsCameron McCloud2008-10-30T09:07:47Z2008-10-30T09:07:47Z<p>Take a look at the calendar view in Redmine.</p>
http://stackoverflow.com/questions/247656/creating-a-backpack-like-calendar-in-rails/312843#3128432Answer by bradheintz for Creating a Backpack-like Calendar in Railsbradheintz2008-11-23T19:27:31Z2008-11-23T19:27:31Z<p>I don't know if this suits the constraints of your problem, but have you looked at the <a href="http://code.google.com/apis/calendar/" rel="nofollow">Google Calendar API</a>? I don't know whether you can count on your users having their own accounts, or whether you can programmatically create all the calendars you need on one account and just pull the per-calendar data through the API, but it might be worth a look.</p>
http://stackoverflow.com/questions/247656/creating-a-backpack-like-calendar-in-rails/486462#4864622Answer by Gabe Hollombe for Creating a Backpack-like Calendar in RailsGabe Hollombe2009-01-28T04:21:08Z2009-01-28T04:21:08Z<p>I ended up going with the Dynamic Calendar Helper for now.</p>
http://stackoverflow.com/questions/247656/creating-a-backpack-like-calendar-in-rails/496101#4961013Answer by petrik for Creating a Backpack-like Calendar in Railspetrik2009-01-30T16:22:02Z2009-01-30T16:22:02Z<p>Check out <a href="http://github.com/p8/table_builder/tree/master" rel="nofollow">http://github.com/p8/table_builder/tree/master</a>.
It works more like form_for.
It also doesn't require Event objects, just objects with a method that returns a date.</p>
<pre><code> <% calendar_for(@tasks, :year => @year, :month => @month) do |t| %>
<%= t.head('mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun') %>
<% t.day(:day_method => YOUR_DATE_METHOD) do |day, tasks| %>
<%= day.day %><br />
<% tasks.each do |task| %>
<%= h(task.name) %><br />
<% end %>
<% end %>
<% end %>
<% end %>
</code></pre>
http://stackoverflow.com/questions/247656/creating-a-backpack-like-calendar-in-rails/1174818#11748183Answer by Jeff Schuil for Creating a Backpack-like Calendar in RailsJeff Schuil2009-07-23T22:22:04Z2009-12-15T22:41:49Z<p>Here's a Rails plugin that can display multiple, overlapping events across calendar days.</p>
<p><a href="http://github.com/elevation/event_calendar" rel="nofollow">http://github.com/elevation/event_calendar</a></p>
<p>Screenshot(s) at: <a href="http://dev.elevationblog.com/2009/7/23/event-calendar-rails-plugin" rel="nofollow">http://dev.elevationblog.com/2009/7/23/event-calendar-rails-plugin</a></p>
http://stackoverflow.com/questions/247656/creating-a-backpack-like-calendar-in-rails/1759710#17597100Answer by ukulele for Creating a Backpack-like Calendar in Railsukulele2009-11-18T22:49:46Z2009-11-18T22:49:46Z<p>If anyone's still looking for a rails calendar plugin, Topfunky's calendar_helper now works well:</p>
<p><a href="http://github.com/topfunky/calendar%5Fhelper" rel="nofollow">http://github.com/topfunky/calendar%5Fhelper</a></p>