RE: [Zope] Form parsing question - buttons and operand context
If you put each item in it's own form, you can just use an <input type=hidden> tag I guess... -----Original Message----- From: Michael S. Fischer [mailto:michael@dynamine.net] Sent: Friday, 11 October 2002 12:18 p.m. To: zope@zope.org Subject: [Zope] Form parsing question - buttons and operand context Greetings, I'm working on a Zope product that will render a table of items I'd like the user to be able to commit actions upon. The table would look similar to this: Item A | Edit (submit) | Delete (submit) Item B | Edit (submit) | Delete (submit) I'd like the "edit" and "delete" to be buttons. I've seen examples in which a method can be called from a form's submission button, e.g. <input type=submit name="deleteObject:method" value="Delete"> I'd like to pass the operand to the form submission handler, but I know of no way to do this. My preferred method would be something like this: <input type=submit name="deleteObject('A'):method" value="Delete"> <input type=submit name="deleteObject('B'):method" value="Delete"> Any ideas on how to make this work? I know there are workarounds, but the alternatives make for a sub-optimal user interface. Thanks, -- Michael S. Fischer / michael at dynamine.net / +1 650-533-4684 Lead Hacketeer, Dynamine Consulting, Silicon Valley, CA _______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
participants (1)
-
Chris Beaven