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

Try this

http://agilewebdevelopment.com/plugins/instant_calendar

Ant wrote:

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

Check out GitHub - p8/table_builder: Rails builder for creating tables and calendars inspired by ActionView's FormBuilder.. 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 %>

<% tasks.each do |task| %>
<%= h(task.name) %>

<% end %>
<% end %>
<% end %>
<% end %>

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.

On Feb 28, 10:33 pm, Unnikrishnan Kp <rails-mailing-l…@andreas-