I'm writing some code to subset a table based on the contents of
particular columns.  My event handler starts off like this:

  subsetChange: function(e) {
    var subset = $F('subsetSelector');
    var rows = $$('.content-row');
    rows.each(function(row) {
      var value = row.down('.Platform_Category').childNodes[0].data;
      switch (subset) {

      ... show/hide rows based on whether the value matches the user
selected subset ...

My question is whether there is a more Prototype-ish way to get the
values from my table cells instead of using ".childNodes[0].data".

Thanks in advance for any advice.

-- Jon

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Spinoffs" group.
To post to this group, send email to rubyonrails-spinoffs@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to