Calendar in Rails

HI All,

Please can anyone tell me whether there is a rails plugin/app that allows creation of a calendar that can render events. I am not talking about a calendar date picker of which there are several, but something more along the lines of http://www.backpackit.com/calendar where an html/css calendar can be rendered with dates highlighted.

Many thanks

Anthony

Anthony,

This might help

http://wiki.rubyonrails.org/rails/pages/Calendar+Helper+Plugin

Mike

Hi:

Try this link. We recently deployed a calendar for our in-house intranet where users can sign up for classes(events). This will give you the calendar and event side of things...

http://rubyforge.org/projects/railendar/

Gary.

Check out http://github.com/p8/table_builder/tree/master. It works similar to form_for. It requires objects with a method that returns a date.

  <% 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 %>