Lets say i have the following Structure
<xmlsheet>
<someContent>
<directContent>hello</directContent>
<otherDirectContent>hello again</otherDirectContent>
<nestedContent>
<title>Hello im a Title</title>
</nestedContent>
</someContent>
<someOtherContent></someOtherContent>
</xmlsheet>
How do i select the title of nestedContent in someContent?
When i select the directContent in someContent it works like this
<cms:contentaccess var="content" />
<c:set var="directContent" value="${content.valueList.someContent[0].value.directContent}"/>
If i only say ${content.valueList.someContent[0].value}
it will throw out direct and otherDirect content but not the nested content :<