Displaying 1 result from an estimated 1 matches for "ships_in".
2006 Apr 19
2
validation :on => :update....
I would like to validate a model on several events. I have:
validates_numericality_of :ships_in, :on => :update, :message =>
''xyz....''
I have this validating on update, but I also want it to validate on save
and on create as well.
Do I have to duplicate this validator for each event? or is there
something cool i can do like:
:on => [:update, :save, :create]
(w...