Hi Gang, I am trying to display all the DTML Documents I have stored in a folder. Basically I want to have a NewsFolder which contains DTML Documents which have news items. I want to have a news page which steps through the NewsFolder and renders each news document stored in the folder. I can step through the folder and display the title of each news document with <dtml-var title>, what would I use to render the entire DTML document? Thanks in advance. Willie Willie Peloquin esi - Vision Products Division 734.332.7180 phone 734.332.7077 fax
William Peloquin wrote:
Hi Gang,
I am trying to display all the DTML Documents I have stored in a folder.
<dl> <dtml-in expr="objectValues(['DTML Document'])"> <dt><dtml-var title> <dd><dtml-var sequence-item></dd> </dtml-in> </dl> make sure the documents have no header or footer. -- emf - mindlace@imeme.net good design is as close as I want to get to ideology.
participants (2)
-
mindlace -
William Peloquin