There are quite a few questions about :reject_if not working. Here is one more case. The :reject_if was completely by-passed.
Here is the code in user model:
class User < ActiveRecord::Base
attr_accessible :name, :login, :email, :password, :user_type, :user_levels_attributes, :as => :role_new
has_many :user_levels, :dependent => :destroy
accepts_nested_attributes_for :user_levels, :reject_if => proc { |a| a['position'].blank? }, :allow_destroy => true
end
User has many user levels which holds the user position info. Here is the model for user_level:
class UserLevel < ActiveRecord::Base
belongs_to :user
validates :position, :presence => true
end
User without a position should not be saved and that's what :reject_if is supposed to do. However we tried, proc, lambda, 'position' and :position. At the end we even tried :reject_if => true to force the execution of the :reject_if. A user with blank position was saved and none of above caught a blank position in user_level. It seems :reject_if was by-passed completely.
What's wrong with our code above? Thank you.