How do I disable templating and sitemesh for scaffold-enabled controllers? I want to display the full scaffold here, and my main template is screwing with this.
How do I disable templating and sitemesh for scaffold-enabled controllers? I want to display
Share
I think you want to rename the layout name used from the scaffolded views. After you did
you have the template of the generated scaffolded pages (which you might have used, when you did
grails generate-all *). In the new foldersrc/templates/scaffolding/*.gspchange the layout name to something likegeneratedMain. I guess you know, but just to be sure:Now restore the orginal
main.gspand rename it togeneratedMain.gsp. Then regenerate your scaffolded views usinggrails generate-all *.At least, this is the way I did it in a couple of projects 😉