Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can someone tell me how to set these check boxes to checked? I'm sure it's simple, but after an hour of trying i think I need to ask! Thanks!

= form_tag movies_path, :id => 'ratings_form', :method => :get do
  Include: 
  - @all_ratings.each do |rating|
    = rating
    = check_box_tag "ratings[#{rating}]", 
  = submit_tag 'Refresh', :id => 'ratings_submit'
share|improve this question

3 Answers

Ref check_box_tag

check_box_tag "ratings[#{rating}]",  1, !!(rating.rating)

Your 2nd parameter must be value of checkbox

Your 3rd parameter must be a boolean condition which return true/false and depends on it checkbox is checked/unchecked

share|improve this answer

Use true for Checked or false for Unchecked at the end of the line

check_box_tag "ratings[#{rating}]", true #checked

or

check_box_tag "ratings[#{rating}]", false #unchecked
share|improve this answer

Try it:

= check_box_tag "ratings[#{rating}]", :checked => "checked"
share|improve this answer
This is not the solution, it's produce: value="{:checked=>"checked"}" – McSas Apr 16 at 4:29

Your Answer

 
discard

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

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