I think I found a workable (but slightly annoying) solution: create
several mini-forms that only have the submit button, each with a
different form name. Then I can just use many
if form_blah.accepts(request.vars, session, formname='form_blah'):
clauses. I'd still be interested in knowing if there is a better way.
Another idea I toyed with was using jQuery to connect the .click
action of a button to cause a jQuery.post(URL('myfunction'),
{button_name : "yes"}) to send the button press to myfunction, but I'm
new to jQuery, so didn't put much time into trying it and don't know
if it would work.
Thanks,
GOn Aug 4, 2:23 am, pbreit <[email protected]> wrote: > Coupla other > approaches:http://www.johnnycode.com/blog/2010/04/08/jquery-form-serialize-doesn...http://stackoverflow.com/questions/4007942/jquery-serializearray-does... > > I'm surprised Jquery doesn't provide better support for this. Seems like a > common pattern.

