Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have DateFrom and DateTo fields. I want to submit those data to action which will do some business logic but nothing changes on the original GSP, and nothing is updated. How do I manage this? I've tried this:

<g:formRemote name="formName" url="[action: 'myAction']">

Everything is fine but except my action tries to render myAction.jsp.

share|improve this question

4 Answers

This is a great place to read how it works.

Basically you need to specify what controller as well:

<g:formRemote name="formName" update="updateMe" url="[controller: 'controller', action:'myAction']">

The "updateMe" is the id of an html-object, preferably div, that you want to alter after submit (but it's not mandatory). It also uses the actionName.gsp to "supply" the answer, this is why you need to have this page create as well.

Remote forms are a bit tricky in the beginning, but they're super simple once you get a hang of it!

share|improve this answer
Thanks for a quick answer. But as I said I don't want to go to another page. I just want to call a method/action from GSP which will do some bussiness logic that does't change the page. And I need to stay on that page. It doesnt need to be formRemote solution. Any advice? – drago Apr 27 '12 at 9:05
I don't really know the details, but Grails seems to need a corresponding gsp-page for the actions you call. You could have that page but just leave it blank I guess (probably not best practice). – marko Apr 27 '12 at 12:22

you can use remoteFunction

share|improve this answer
up vote 0 down vote accepted

This is how I did it:

GSP:

<g:formRemote name="formName" update="updateMe" url="[controller: 'controller', action:'myAction']">
<div id="updateMe">
    <g:render template="updateTemplate"/>
</div>

Action:

...
render template:"updateTemplate"

updateTemlate and updateMe div are both empty.

If you have better solution please tell me.

share|improve this answer

you need to write submit button inside form and then after it will fire action and some changes shown into div..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.