| OdesÃlatel: huzza boo <huzzaboo@yahoo.com> | I've created a test folder below the root, and within | it placed two more folders. I'm simply trying to get | the subfolders to display in my index_html document in | my first test root folder. I'm using: | | < ul> | < dtml-in expr="objectValues('Folder')"> | < li>< dtml-var title_or_id> | < /dtml-in> | < /ul> | | ...and getting nothing but empty ul tags. | | If I try this at the absolute root, it works. In any | sub folder, it does not. Hi, I generally use this piece of code to display subfolders: <UL> <dtml-in "PARENTS[0].objectValues(['Folder', 'LinkedFolder','PortableHole'])" sort=id skip_unauthorized ><dtml-if expr="_.string.find(_['id'],'images')==0" ><dtml-elif expr="_.string.find(_['id'],'img')==0" ><dtml-elif "hasProperty('hide')" ><dtml-else ><li><a href="<dtml-var absolute_url>/"><dtml-var navi_BANNER></a></li> </dtml-if
</dtml-in> </UL>
Regards JL.