Reputation: 898
I have a Fluid View with some <f:form.hidden/>
fields.
Most of them are populated by jQuery magic (like Autocomplete; Checkboxes are added together, then put into a hidden field, ..), therefor I added some plain html, non fluid inputs, which I won't need in the action, which are just for the user.
So, is it possible to just send the fluid viewhelper generated inputs and remove the non-fluid plain inputs from the request arguments?
Thanks in advance
Upvotes: 0
Views: 308
Reputation: 55798
Remove name
attribute from these custom inputs you don't want to send. It will prevent joining them into the request.
Use id
attribute in custom inputs to find required elements instead.
Upvotes: 4