Call children object
Hi, the dtml-var call a object in currente folder and after go the parent folder..... I need seek the children object, exemple: <dtml-var /children/index_html> but the this exemple dont work...... Bye and sorry for english _______________________________________________________________________ Yahoo! Encontros O lugar certo para vocĂȘ encontrar aquela pessoa que falta na sua vida. Cadastre-se hoje mesmo! http://br.encontros.yahoo.com/
You can do this: <dtml-var "_.getitem('children').index_html"> but this will not render the item it will only retrieve it's contents. One way to render the item would be to do the following: <dtml-with "_.getitem('children')"> <dtml-var index_html> </dtml-with> Kevin -----Original Message----- From: zope-admin@zope.org [mailto:zope-admin@zope.org]On Behalf Of Daniel Schmitz Sent: Wednesday, May 22, 2002 4:23 PM To: zope@zope.org Subject: [Zope] Call children object Hi, the dtml-var call a object in currente folder and after go the parent folder..... I need seek the children object, exemple: <dtml-var /children/index_html> but the this exemple dont work...... Bye and sorry for english _______________________________________________________________________ Yahoo! Encontros O lugar certo para vocĂȘ encontrar aquela pessoa que falta na sua vida. Cadastre-se hoje mesmo! http://br.encontros.yahoo.com/ _______________________________________________ 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 (2)
-
Daniel Schmitz -
Kevin Carlson