I'm using this example from the DHTMLcalendar website:
<%= calendar 'person', 'birthday', { :class => 'date' }, { :firstDay
=> 1, :range => [2006, 2007], :step => 1, :showOthers => false } %>
and it works great, except I would like to maybe use rail's find
method to grab dates from a model, and have the days in the calendar
be a different color if it matches one of the dates found from the
model. And also to add an onmouseover attribute to the days that are
differently colored. Is this possible? Thank you.