I have a nested form categories for stores resource. They have a has_and_belongs_to_many relationship.

When I create the nested form, I get the following on the stores form:

enter image description here

But what I really want is a checklist like this:

enter image description here

Any ideas?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Turns out that after creating those relationships between the models, I don't need to do the f.has_many loop in the activeadmin resource. Instead, I just needed the following to make it work:

f.input :categories, :as => :check_boxes

This will automatically take the categories and check the default ones (and also handle any changes made to it).

link|improve this answer
i love this feature of formtastic, thx :) – Silvermind Dec 1 '11 at 20:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.