I checked out Grails: How to combine domain objects' errors with command objects' errors?, but for some reason the solutions aren't working for me. It's possible they're only for Grails 1.3.7 and not Grails 2.2.1.
I have a command object OuterObjectCommand that contains a list of InnerObjectCommand. I'm populating it manually in the controller, and then calling validate. Calling validate() on OuterObjectCommand does not appear to be validating the InnerObjectCommand list, so I validate all the elements of the list separately. What I want to do is add all the errors of InnerObjectCommand objects and the OuterObjectCommand object into flash.errors. How can I do this?