Tag Archives: nested

Accessing Links in Nested TD Cells with Prototype

There must be a better way to do the following with PrototypeJS. I want to loop over nested links inside of table td cells and apply a class to the row that the link is in when the link is clicked. If a user clicks on another link the class will be removed and [...]
Posted in javascript | Also tagged , , , , , | Leave a comment

Nested Attributes in a Form for Has_One Model Association in Rails

Just for reference… class Member < ActiveRecord::Base has_one :member_profile accepts_nested_attributes_for :member_profile end
Posted in Ruby on Rails | Also tagged , | Leave a comment