Displaying 1 result from an estimated 1 matches for "childables".
Did you mean:
childable
2010 May 25
2
Site Navigation With Polymorphic Has Many Through
...lt; ActiveRecord::Base
has_one :parent_menu_item , :as => :parentable , :class_name =>
''MenuItem''
has_many :child_menu_items , :as => :childable , :class_name =>
''MenuItem''
has_one :parentable , :through => :parent_menu_item
has_many :childables , :through => :child_menu_items
end
class SubCategory < ActiveRecord::Base
has_many :child_menu_items , :as => :childable , :class_name =>
''MenuItem''
has_one :parent_menu_item , :as => :parentable , :class_name =>
''MenuItem''
has_one...