Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My apologies for what may be a poor explanation here, I'm a rails beginner and this problem is making my head hurt!

I have a new service form that allows a user to configure add-ons for their service based on add-on types (or categories). See:

a visual representation in a form

In the new service controller, these are pulled in with: @addon_types = Product.find(params[:product_id]).product_cat.addon_types then I have the following to create the forms:

<% for addon_type in @addon_types %>
  <%= f.input :service_addons, 
              :label => "#{addon_type.name} <small>#{addon_type.unit}</small>",
              :collection => addon_type.addons, 
              :label_method => :quantity, :value_method => :id %>
<% end %>

What I'm trying to achieve is for when any add-ons are selected, these are created in the HABTM table between services and addons. Seemingly as things stand, only the final :service_addons item is passed in the params. Now my first thought would be to add virtual attributes for each :service_addon so these submit, but these addons are dynamic (in that someone could add another :addon_type at a later stage).

Any help would be hugely appreciated.

My models are set up as so:

class Service < ActiveRecord::Base
  belongs_to :product
  has_and_belongs_to_many :addons
end

class Product < ActiveRecord::Base
  belongs_to :product_cat
  has_many :services
end

class ProductCat < ActiveRecord::Base
  has_many :products
  has_many :addon_types
end

class AddonType < ActiveRecord::Base
  belongs_to :product_cat
  has_many :addons
end

class Addon < ActiveRecord::Base
  belongs_to :addon_type
end
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.