Hi,
I was trying to read date property using sightly but it wont output anything. Below is the snippet that I used but it will always come as blank:
Date Modified - ${pageProperties.cq:lastModified}
I also tried possibly context options but in vain.
I am trying to avoid Java Helper class route for simply reading one property.
Anyone faced that error before or any solutions to read date property apart from using java helper class?
Thanks,
Runal
Solved! Go to Solution.
Here an example how to do date-formatting, done via Sling-models
Sightly: <div data-sly-call="${ dateFormat @ date=currentPage.lastModified, dateFormat='dd/MM/yyyy' }"> </div> <template data-sly-template.dateFormat="${ @ date, dateFormat }"> <div data-sly-use.formatter="${'com.yourproject.DateFormatting' @ date=date,dateFormat=dateFormat}"> Formatted value : ${formatter.formattedValue} </div> </template>
Java: @Model(adaptables=SlingHttpServletRequest.class) public class DateFormatting { @Inject // injected as parameter private Calendar date; @Inject // injected as parameter private String dateFormat; public String formattedValue; @PostConstruct protected void init() { SimpleDateFormat formatter = new SimpleDateFormat(dateFormat); formattedValue = formatter.format(date.getTime()); } }
This is all explained in this AEM doc topic:
http://docs.adobe.com/docs/en/aem/6-0/develop/sightly.html
More Sighty examples here:
http://experiencedelivers.adobe.com/cemblog/en/experiencedelivers/2014/01/sightly-preview-part1.html
<ul data-sly-list.child="${currentPage.listChildren}">
<li>${child.title}</li>
</ul>
Views
Replies
Total Likes
Hi,
Thanks for the response but the snippet that I pasted in my query is sightly snippet only and it doesnt return anything.
I have gone through the tutorials but none mention how can a date property be accessed from sightly snippet.
- Runal
Views
Replies
Total Likes
Can you try this?
${pageProperties['cq:lastModified'].toString}
Views
Replies
Total Likes
Views
Replies
Total Likes
Hi Fieke,
Thanks it certainly helped. But more interestingly it allowed me to call Date Modified - ${dateobj.getTime.toString}.
My doubt here is, how does sightly allow to call DATE, DATETIME API methods directly i.e dateobj.getTime, dateobj.getTime.getTime, dateobj.getWeekYear etc..
- Runal
Sightly tries to call methods that are available on the object you supplied, just basic java reflection I would say.
Views
Replies
Total Likes
Here an example how to do date-formatting, done via Sling-models
Sightly: <div data-sly-call="${ dateFormat @ date=currentPage.lastModified, dateFormat='dd/MM/yyyy' }"> </div> <template data-sly-template.dateFormat="${ @ date, dateFormat }"> <div data-sly-use.formatter="${'com.yourproject.DateFormatting' @ date=date,dateFormat=dateFormat}"> Formatted value : ${formatter.formattedValue} </div> </template>
Java: @Model(adaptables=SlingHttpServletRequest.class) public class DateFormatting { @Inject // injected as parameter private Calendar date; @Inject // injected as parameter private String dateFormat; public String formattedValue; @PostConstruct protected void init() { SimpleDateFormat formatter = new SimpleDateFormat(dateFormat); formattedValue = formatter.format(date.getTime()); } }
A little late response, but since I stumbled upon the same problem and came across this post, I am leaving this reply
You have to format it, ie. like so:
${'yyyy-MM-dd' @ format=myDate}
Check this for more info:
https://github.com/adobe/htl-spec/blob/1.3/SPECIFICATION.md#1222-dates
Views
Replies
Total Likes