I have a Person object with a lastName field. The lastName field cannot be blank. When the user submits a form blank value in the lastName field, the error message that the user sees is:

Property [lastName] of class [com.example.Person] cannot be blank

This error message is lame. I want to customize it to something more user friendly, like "The Last Name field cannot be blank"

How do I do that?

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

See Chapter 7 of the docs: http://grails.org/doc/latest/

You would change grails-app/i18n/messages.properties and add

person.lastName.blank=The Last Name field cannot be blank
link|improve this answer
Thanks. I'd spent a lot of time trying to track that one down - somehow I'd missed it on that page. – Spike Williams Feb 7 '11 at 15:50
There's also information in each constraint page about what property name it uses - those are in the left frame in the Constraints section. E.g. the creditCard constraint uses 'className.propertyName.creditCard.invalid' - see grails.org/doc/latest/ref/Constraints/creditCard.html for a direct link. – Burt Beckwith Feb 7 '11 at 19:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.