I have a content with a content relator cce. In the display view code using jstl, I am trying to obtain the system information for the relator items. Sample code is:
<c:forEach items="${category.vcmuser_tblI4Blogs}" var="blog" varStatus="blogStat">
blog number: ${blogStat.count}<br>
category: ${category.system.name}<br>
title: ${blog.tblI4Blogs_title}<br>
url: ${blog.tblI4Blogs_url}<br>
date: ${blog.system.Name}<br>
</c:forEach>
where blog is one of many items in the content relator. How can I access system values for these items? I get the following error message:
date: javax.el.PropertyNotFoundException: Property 'system' not found on type com.cust.contentbean.I4ContentImpl$Vcmuser_tblI4Blogs
I notice that the system property works fine for category which is the 'top level' item being displayed. So, why not available for the relator items?
On a related note, my ultimate goal is to get the creationTime of this content item. Is this at all possible in the display view rendering code (in jsp using jstl if possible)?
Thank you!