vote up 0 vote down star
1

Hi folks,

I have the following domain class in my grails project:

class Vacation {
  Date start
  Date end

  User vacationer

  static constraints = {
    start(validator: {return (it >= new Date()-1)})
  }
}

Is it possible to add a validator that requires end to be equal or greater than start?

Cheers

flag

2 Answers

vote up 1 vote down check

Use

start(validator: { 
   val, obj ->
      val < obj.properties['end']
})
link|flag
Works perfect. Thanks. – Error Prone Aug 20 at 10:02
vote up 0 vote down

You can directly access property "end", since obj is the object of the class Vacation only, where it is defined. Use:

start(validator: { val, obj -> val < obj.end })

link|flag

Your Answer

Get an OpenID
or

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