What is the correct way to do something like this with grails:

class myDomainThing {
  String description
  MyOtherDomainThing otherThing

  static constraints = {
    description(nullable:if(otherThing))
    otherThing(nullable:if(description))
  }
}

So I either want there to be a link to the otherDomainThing or I want a String description.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You will have to using Grails customer validation using the validator

static constraints = {
  description(validator: {
        return otherThing and !description
    })
}
link|improve this answer
feedback

you'll need to use a custom validator

static constraints = {
  description validator: { val, obj -> 
     if(otherthing && val) {
         false
     }
     else {
       true
     }
  }
}

obviously some pseudocode in there around otherthing

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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