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.

I have multiple check boxes from a many to many relationship, And i'm trying to validate them so that none of the fields need a value to continue. At the moment if i try to create a user without assigning them to a group/role through the checkboxes i get

You have a nil object when you didn't expect it!
You might have expected an instance of Array.
The error occurred while evaluating nil.each

Also when a group is assigned but all other fields are left empty i still get the above error.

When everything has a value it works perfectly.

Form below

Screenshot

share|improve this question
You ruby interpreter should also be generating a line number on which this nil is happening. That should tell you what object is getting set to nil (and hence, where the problem is, and on which form element). Please post that section of code as well. – normalocity Jul 20 '11 at 13:02
Hard to say what's going on without your code... – Jeff Paquette Jul 20 '11 at 13:03

1 Answer

up vote 1 down vote accepted

use the empty array if all checkboxes unchecked

 params[:user][:group_ids] ||= []

if you still have the issue, you need to copy-paste your controller code here

share|improve this answer
did it help you? – mikhailov Jul 21 '11 at 3:39

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.