Assume the following (simplified) domain classes:
class Person { static hasMany = [stringProperties: StringProperty] static constraints = { } }
and
class StringProperty { String name String value static constraints = { name blank:false value blank: true } }
When scaffolding creates a create view, there is no way in gsp to create a StringProperty from Person.
Whether there is any plugin or someone knows best practice that can display the create ui view that allows you to create hasmany relationship elements.
I just ask before I take the time to change the forest templates.
source share