I have this piece of code, while using simple_form:

= simple_form_for :report do |f|
  = f.association :presets,
    :collection => @account.presets.collect{ |p| [p.name, p.id] },
    :as => :check_boxes

How can I preselect a specific preset checkbox, knowing that the ID of this preset is passed within params[:preset_id]? The checkboxes' HTML name attributes are report[preset_ids][].

link|improve this question

80% accept rate
feedback

3 Answers

up vote 2 down vote accepted

According to the simple_form documentation:

The association helper just invokes input under the hood, so all options available to :select, :radio and :check_boxes are also available to association. Additionally, you can specify the collection by hand, all together with the prompt:

   f.association :company, :collection
      => Company.active.all(:order => 'name'), :prompt => "Choose a Company"

So, you should use something like this:

= simple_form_for :report do |f|
  = f.association :presets,
    :collection => @account.presets.collect{ |p| [p.name, p.id] },
    :as => :check_boxes,
    :selected => params[:preset_id]

I don't have experience with simple_form, but this might help :)

link|improve this answer
+1 - Twice I've used this helpful answer now! Thanks. – Gav Aug 24 '11 at 13:30
feedback

Don't forget to cast params[:preset_id] to integer:

params[:preset_id].to_i
link|improve this answer
feedback

An update for everybody. the :selected option did not work for me. I used:

:checked => [2, 3]

Hope it helps someone.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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