Hi Tim,<br><br>I'm gonna try to explain you what you have to do for working all these things out and why it doesn't work. Well, in the first xml content you have a VFS field, where you edit a path, everything ok till here. Although the path is pointing to another xml content, it doesn't matter, it is just a path, so there's no more information in this field.<br>
So If you write in your jsp <cms:contentload><cms:contentloop><cms:contentshow> you are getting the directions, the paths which you edited previously.<br>The way that I solve this is keeping the path in the pageContext and then I open another <cms:contentload>. This is an example:<br>
<br><cms:contentload collector="XXX" param="XXX"  ><br>     <cms:contentcheck ifexists="FieldVFS"><br>           <cms:contentloop element="FieldVFS"><br><br>                <c:set var="myPath"> <cms:contentshow/> </c:set><br>
                <cms:contentload collector="singleFile" param="%(pageContext.myPath)"  ><br>                      // Your code here<br>                </cms:contentload><br><br>           </cms:contentloop><br>
     </cms:contentcheck><br></cms:contentload><br><br>As you can see, we get the path from the first xml and then we get the information of the nested xml content.  I hope to help you.<br><br>Regards<br><br><br>
<div class="gmail_quote">2010/5/31 Tim Daschner <span dir="ltr"><<a href="mailto:timd@thedoleco.com">timd@thedoleco.com</a>></span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hello,<br><br>I have a xml content definition which has a field that can contain 0 or more vfs files. these vfs file in turn is another xml content file. This works fine as far as content editing is concerned. SO,. I can open the main piece of content and can easily edit the file path on the nested xml content. The nested xml content itself has 0 or more Images. All of this works in the workplace. Now, when I start to write the JSP to display this, can I still use the standard <cms:contentload><cms:contentloop><cms:contentshow> paradigm? It appears not! So, how does one code the display of these nested images in JSP? Is it absolutely necessary here to write this in java scriptlet code? Will this comcept work in scriptlet code? <br>

<br>The real life case here is that our client's articles are made of multiple other text/image content which are then picked at production time by editors. On the front end, a neat little javascript shows one of the multiple text/image content based on user interaction.<br>

<br>Please help to make this work.<br><br>BEst,<br><font color="#888888">Tim<br>
</font><br><br>
_______________________________________________<br>
This mail is sent to you from the opencms-dev mailing list<br>
To change your list options, or to unsubscribe from the list, please visit<br>
<a href="http://lists.opencms.org/mailman/listinfo/opencms-dev" target="_blank">http://lists.opencms.org/mailman/listinfo/opencms-dev</a><br></blockquote></div><br>