R. David Murray writes:
 > > This:
 > >   <b><!--#var eggs --></b>
 > >   <dtml-call "manage_changeProperties({'eggs': 'blue'})">
 > > 
 > >   <p><!--#var eggs -->
 > > 
 > > results in:
 > >    <b>green</b>
 > > 
 > >    <p>green
 > > 
 > > did i miss something?
 > 
 > Hmm.  That should have worked.  You could try
 > manage_changeProperties(eggs='blue') as an alternative, but the
 > dictionary way should have worked.
Maybe, "manage_changeProperties" is called on the wrong
object, i.e. one that does not have an "eggs" property.

Try:

        <dtml-call "PARENTS[0].manage_changeProperties({'eggs': 'blue'})">

to call it on the folder.


Dieter

_______________________________________________
Zope maillist  -  [EMAIL PROTECTED]
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 )

Reply via email to