I added the resources plug-in in a grails 1.3.7 application and everything works fine except javascript that is loaded asynchronously.
So if I have a template that conta
I always go with Peter Ledbrook response, but instead of using a layout, I use a template and I automate what to render in the main layout. My main.gsp looks like the following:
...
Then, the _content.gsp template looks like:
That way, I can automatically ajaxify all relative links and forms and no action is required in the controller (no different responses), since the ajax response always goes inside the content div.