Aldric Giacomoni wrote:>

> 
> It's really standard, nothing fancy.
> I'd like to be able to click on a row and change the texts in all cells
> to strike-through (and possibly, remove the strike-through when you
> click again).
> 
> What should I look for online.. Or how do I do it?

Aldric,

take a look at prototype's Element.observe functionality, you can 
register a handler to change an element's class when it is clicked..

Element.observe("id of element", "click" function(e) {
   e.addClassName("css_class_name_you_provided_for_strikethrough")
})

There is also removeClassName and toggle which you should look at for 
the alternate case..


-- 
Posted via http://www.ruby-forum.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
-~----------~----~----~----~------~----~------~--~---

Reply via email to