Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: Grails-jQuery 1.4.0.1
-
Component/s: None
-
Labels:None
Description
submitToRemote tag does not serialize form inputs.
For example, with this form, the edit action can't find the id parameter
<g:form>
<g:hiddenField name="id" value="${produitInstance?.id}" />
<span class="button">
<g:submitToRemote update="body" class="edit" action="edit" value="Edit" />
</span>
<span class="button">
<g:submitToRemote update="body" class="delete" action="delete" value="Delete"
onclick="return confirm('Are you sure?');" />
</span>
</g:form>
i used Grails 1.2.0, and Grails jQuery Plugin version 1.3.2.4