I have a question that how can I display the controller CRUD default sites with an own stylesheet?
Problem Context
I created a grails application with a controller, domain, and a view and now I created my own stylesheet, own layout, and added some pages. Now I have my new files with my stylesheet but if I use the default function it looks the same:
So how can I use the CRUD function in the content of my new pages with my style?
The default scaffolding code is generated using the Grails Scaffolding plugin.
grails install-templates
to add the templates under the src/main/templates/scaffolding
which you could customize as per the requirement.You may also want to take a look at the Grails scaffolding plugin here