


Hi,
We need to fetch the jcr:created date for cq:Page (TestTouchRTE).
I am using
<c:set var="createdDate" value="${pageProperties['jcr:created']}"/>
This is giving jcr:content created date i.e. of cq:PageContent
, instead I want the jcr:created date of cq:Page.
Thanks
Solved! Go to Solution.
Views
Replies
Total Likes
Actually it should not make any difference, and I wonder how in your case the timestamps can be different at all.
But the Page API does not provide any way to read that (I see a "getLastModified()" method, but no "getCreated()" method, which is a bit inconsistent), therefor I would stick with the method you already have. As said, I cannot explain the inconsistency, but this property is not protected, and thus can be changed at will.
Views
Replies
Total Likes
Actually it should not make any difference, and I wonder how in your case the timestamps can be different at all.
But the Page API does not provide any way to read that (I see a "getLastModified()" method, but no "getCreated()" method, which is a bit inconsistent), therefor I would stick with the method you already have. As said, I cannot explain the inconsistency, but this property is not protected, and thus can be changed at will.
Views
Replies
Total Likes