Nadal
#1
In rails3 this is what I get.
validates_presence_of :subject
#=> subject can’t be blank
validates_presence_of :subject, :message => “can’t be empty”
#=> subject can’t be empty
However What I want is
#=> Please enter title
even though the field name is “subject”.
How do I do that in rails3?
Nadal
#2
Try this:
http://stackoverflow.com/questions/3755128/rails-3-custom-error-message-in-validation
I haven’t played around with it, but object.errors[attribute] <<
error_message should probably be changed to just error_message.
Let me know how it goes.
-sunny
http://ezror.com
Nadal
#3
validates :subject , :presence => “Greetings sire, please introduce the
title!”
am not sure if you need to put { }