Search code examples
grailsform-submitgsp

Grails form submit without changing the view


I want to call an action (it does some filtering and send mails) from my GSP but I want to stay on that GSP. How to acoplish this? Thanks.


Solution

  • You have to use Ajax to submit your form.

    Use the formRemote tag to achieve an Ajax submit.

    Alternatively you could build it on your own by hooking into the onSubmit event of you form.