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

Popular posts from this blog

basic authentication with http post params android -

vb.net - Virtual Keyboard commands -

c++ - End of file on pipe magic during open -