Re: [Zope] delete multiple records sql python etc
Thanks again for the info, I've been down this road before and I'm able to pass the three values from the form to the python script, but it does not seem to come over as a true list that allows one to assign variables to items in the list. For example: say the value of throw_away_script is Value1_Value2_Value3 which as far as the script is concerned the list has only 1 entry. Then my question becomes how do you parse out the values and assign them to a variable? Thanks, T ----- Original Message ----- From: <H.de.Wit@SFK.NL> To: Todd Graham <tgraham@speakeasy.net> Sent: Thursday, December 06, 2001 8:34 AM Subject: Re: [Zope] delete multiple records sql python etc
Sorry for my last post, it doesn't solve anything.
But may be this one does:
<input type="checkbox" name="throw_away_list:list" value="<dtml-var
userid>
_<dtml-var key2>_<dtml-var key3>">
you will get a list that looks somehting like this: [1_3_9 ,7_4_7, 9_1_1] That list can you parse in the delete method to extract your keys.
Met vriendelijke groeten,
Hans de Wit Stichting Farmaceutische Kengetallen Postbus 30460 2500 GL DEN HAAG Tel. 070-3737448 Fax 070-3737445
On Thu, Dec 06, 2001 at 12:53:12PM -0800, Todd Graham wrote:
Thanks again for the info, I've been down this road before and I'm able to pass the three values from the form to the python script, but it does not seem to come over as a true list that allows one to assign variables to items in the list.
For example:
say the value of throw_away_script is
Value1_Value2_Value3
which as far as the script is concerned the list has only 1 entry. Then my question becomes how do you parse out the values and assign them to a variable?
Thanks,
T
suppose parameter val. python script: import string my_tuple=string.split(val, '_') return my_tuple Jim Penny
participants (2)
-
Jim Penny -
Todd Graham