Hi Igor,
I'm new to this.
I have a form that contains records that have to be submitted to the web application.
<#list salespointpromotionmaterials as salespointpromotionmaterial>
<tr>
<td>${promotionmaterials[salespointpromotionmaterial.PROMO_MATERIAAL_ID].omschrijving}</td>
<td>
<div class="checkbox">
<label><input type="checkbox" value="J" name="promomat[salespointpromotionmaterial.PROMO_MATERIAAL_ID][mogelijk]" <#if salespointpromotionmaterial.MOGELIJKHEID_FLAG??>CHECKED</#if>></label>
</div>
<td>
<div class="checkbox">
<label><input type="checkbox" value="J" name="promomat[salespointpromotionmaterial.PROMO_MATERIAAL_ID][bereid]" <#if salespointpromotionmaterial.BEREIDHEID_FLAG??>CHECKED</#if>></label>
</div>
</td>
</tr>
</#list>
I made a @link_to that does an ajax request i thought i had to use the form option to submit the form to the controller?
How can i read the values of this form in the controller?
Thank you.