Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

accepts_nested_attributes_for ignore blank values

i have

class Profile
  has_many :favorite_books, :dependent => :destroy
  has_many :favorite_quotes, :dependent => :destroy

  accepts_nested_attributes_for :favorite_books, :allow_destroy => true
  accepts_nested_attributes_for :favorite_quotes, :allow_destroy => true
end

I have a dynamic form where you press '+' to add new textareas for creating new favorites. What i want to do is ignore the blank ones, I find this harder to sort through in the update controller than a non nested attribute.

What i have temporarily is a hack in the after_save callback deleting the empty records. Whats the most rails way to ignore these blank objects?

I dont want validation and errors, just a silent deletion/ignore.

like image 919
Michael Avatar asked Feb 10 '11 23:02

Michael


1 Answers

There is a built-in validation:

:reject_if => lambda { |c| c[:name].blank? },
like image 188
apneadiving Avatar answered Oct 08 '22 09:10

apneadiving