In a edit page, I am passing the domain object as JSON object to be manipulated at client side using jQuery.

render domainClassObject as JSON

When I see the response in client side (in firebug for e.g.), there is no "version" property. Only "version" is missing, all other values are available. What is the reason for this and what should I do to get the "version" value also as part of response from server when using "as JSON"

Thank You. Jay Chandran.

link|improve this question

56% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Per the Grails Converters reference:

grails.converters.json.domain.include.version (Boolean) - Set to true if JSON Converter should default include version from domain (default: false)

Set this to true in your Config.groovy.

link|improve this answer
Thanks a lot. it works! – Jay Chandran Jul 23 '11 at 19:47
feedback

Your Answer

 
or
required, but never shown

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