drago
drago

Reputation: 1207

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.

Upvotes: 1

Views: 682

Answers (2)

Roberto Perez Alcolea
Roberto Perez Alcolea

Reputation: 1414

If you want to do this with a form, you can take a look on 'submitToRemote' tag: submitToRemote

but if you want to do it with a hyperlink... take a look on 'remoteLink' tag: remoteLink

Upvotes: 1

aiolos
aiolos

Reputation: 4697

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.

Upvotes: 3

Related Questions