Scott Kulik wrote:
> say for example i had something simple like this in a view:
>
> <tr class="even"><td><%= check_box_tag(:task) %></td>
>
> how would i add onclick to change the row color on a check and when the
> check is removed?
>
> maybe something like this?
>
> page[task].addClassName('complete')
>
> i'm not that familiar with javascript so i'm not sure how i would finish
> this. thanks!
<%= check_box_tag :task, 1, false,
:onchange => "$(parentNode.parentNode).toggleClassName('complete')" %>
--
Rails Wheels - Find Plugins, List & Sell Plugins - http://railswheels.com
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---