Arno Gross wrote:

> Suppose I have a list of existing folder objects and depending
> on their index in the list I want to set a property called 'rang'.
> 
> I assumed you could something like this:
> 
> 
> <dtml-call "REQUEST.set('rangList','folder1;folder2;folder2')"> 
> (normally the list comes from outside)
> 
> <dtml-in " _.string.split(rangList,';')">   
>   <dtml-with "_.getitem('sequence-item')">   

Here, you're getting an item with the literal id 'sequence-item'.

What you mean is to get the item with the id described by the variable 
sequence-item. So, use:

     <dtml-with "_.getitem(_['sequence-item'])">

Hope that helps.


This really is a [EMAIL PROTECTED] question, not a [EMAIL PROTECTED] 
question. Please do try to choose the appropriate list for the question. 
Thanks.

--
Steve Alexander
Software Engineer
Cat-Box limited
http://www.cat-box.net


_______________________________________________
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )

Reply via email to