Re: [Zope] passing parameters from form to script

2005-08-29 Thread Peter Bengtsson
2 options:

- don't have a parameter on your 'paramtest' script and instead
iterate on context.REQUEST.form.items()

- keep a hidden variable in the form creation. eg. 
  
  then make 'keys' the only parameter of 'paramtest' and use this like this:
  for key in keys:
  value = context.REQUEST[key]


On 8/29/05, Roman Klesel <[EMAIL PROTECTED]> wrote:
> Hello everyone,
> 
> I'm dynamically generate a form e.g like this:
> 
> 
> 
> 
>  tal:repeat="item
> python:context.Templates.AddressTemplate.propertyIds()">
> 
> bla
> name="item"
>value="" tal:attributes="name item; value
> python:context.Templates.AddressTemplate.getProperty(item)">
> 
>  
>  
>   
>   
>   
>   
>  
> 
> 
> 
> How can I process the parameters with the target script? I don't know how
> many parameters will be passed to the script by the form. I also don't
> know  their names.
> 
> I allready tried various things and did some research in the docs and
> lists but can't figure it out.
> 
> I thougth of stuffing all the values in one list with the :records option
> but couldn't it right.
> 
> I tried :
> 
> name="item"
>value="" tal:attributes="name addr.item:records; value
> python:context.Templates.AddressTemplate.getProperty(item)">
> 
> 
> but this also doesn't work.
> 
> Will s.o. please help me to get on the right track?
> 
> Greetings
> 
> Roman
> 
> ___
> Zope maillist  -  Zope@zope.org
> http://mail.zope.org/mailman/listinfo/zope
> **   No cross posts or HTML encoding!  **
> (Related lists -
>  http://mail.zope.org/mailman/listinfo/zope-announce
>  http://mail.zope.org/mailman/listinfo/zope-dev )
> 


-- 
Peter Bengtsson, 
work www.fry-it.com
home www.peterbe.com
hobby www.issuetrackerproduct.com
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists -
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


[Zope] passing parameters from form to script

2005-08-29 Thread Roman Klesel
Hello everyone,

I'm dynamically generate a form e.g like this:




  

bla


 
 
  
  
  
  
 



How can I process the parameters with the target script? I don't know how
many parameters will be passed to the script by the form. I also don't
know  their names.

I allready tried various things and did some research in the docs and
lists but can't figure it out.

I thougth of stuffing all the values in one list with the :records option
but couldn't it right.

I tried :




but this also doesn't work.

Will s.o. please help me to get on the right track?

Greetings

Roman

___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )