Creating a Backpack-like Calendar in Rails - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T17:52:16Z http://stackoverflow.com/feeds/question/247656 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/247656/creating-a-backpack-like-calendar-in-rails 4 Creating a Backpack-like Calendar in Rails Gabe Hollombe 2008-10-29T17:19:46Z 2009-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#249627 1 Answer by Cameron McCloud for Creating a Backpack-like Calendar in Rails Cameron McCloud 2008-10-30T09:07:47Z 2008-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#312843 2 Answer by bradheintz for Creating a Backpack-like Calendar in Rails bradheintz 2008-11-23T19:27:31Z 2008-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#486462 2 Answer by Gabe Hollombe for Creating a Backpack-like Calendar in Rails Gabe Hollombe 2009-01-28T04:21:08Z 2009-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#496101 3 Answer by petrik for Creating a Backpack-like Calendar in Rails petrik 2009-01-30T16:22:02Z 2009-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> &lt;% calendar_for(@tasks, :year =&gt; @year, :month =&gt; @month) do |t| %&gt; &lt;%= t.head('mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun') %&gt; &lt;% t.day(:day_method =&gt; YOUR_DATE_METHOD) do |day, tasks| %&gt; &lt;%= day.day %&gt;&lt;br /&gt; &lt;% tasks.each do |task| %&gt; &lt;%= h(task.name) %&gt;&lt;br /&gt; &lt;% end %&gt; &lt;% end %&gt; &lt;% end %&gt; &lt;% end %&gt; </code></pre> http://stackoverflow.com/questions/247656/creating-a-backpack-like-calendar-in-rails/1174818#1174818 3 Answer by Jeff Schuil for Creating a Backpack-like Calendar in Rails Jeff Schuil 2009-07-23T22:22:04Z 2009-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#1759710 0 Answer by ukulele for Creating a Backpack-like Calendar in Rails ukulele 2009-11-18T22:49:46Z 2009-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>