views:

578

answers:

1

How to remove Field Name in validates_presence_of on rails Model for the following coding

validates_presence_of :address, :attributes => true, :discard_if => :invalid?, :on => :save, :message=> "Invalid Address"

and the Output is

Address Invalid address

and I don't want Address field in this validation

Please Help me to solve this problem

+1  A: 

I believe this is the answer you're looking for:

Fully custom validation error message with Rails

Delameko