--
You received this message because you are subscribed to the Google Groups "formhandler" group.
To post to this group, send email to formh...@googlegroups.com.
To unsubscribe from this group, send email to formhandler...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/formhandler?hl=en.
Well, managed to delete a hidden parameter on an ajax call:
delete $c->req->params->{'_'};
$form->process(params=>$c->req->params);
Next challenge is how to process the ajax form on submission - the
'posted' request designates the native URL rather than the URL where
the ajax pops up.
Just realised one caveat for this - no form validation within this action
What I meant is that after an initial loading of the form by an ajax
call, the parameters are forcefully dealt by non-default action. So no
parameter validation within the catalyst action where the form is
defined.