My application's data model has a child model that has a large number of parent (belongs_to) models. I'm trying to figure out how to set the options differently for different places it will show up embedded as a nested scaffold. Specifically, let's take:
class ParentA has_many :children, :as = :parent end class ParentB has_many :children, :as => :parent end class ParentC has_many :children class Children belongs_to :parent, :polymorphic => true end -- You received this message because you are subscribed to the Google Groups "ActiveScaffold : Ruby on Rails plugin" 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/activescaffold?hl=en.
