gsp - grails: scaffolding create view for domain with hasMany relation -
let's assume 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 generates create view, there no option in gsp create stringproperty person.
does plugin exist or know best practice, can render sort of create ui allows create members of hasmany relation.
i'm asking before take time modify scaffolding templates.
this 1 of areas plugin or enhanced scaffolding welcomed community. if had time take information presented here , make plugin it. have used approach few times , works well.
Comments
Post a Comment