Reading date property using sightly | Community
Skip to main content
Runal_Trivedi
Level 6
October 16, 2015
Solved

Reading date property using sightly

  • October 16, 2015
  • 7 replies
  • 13675 views

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

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Feike_Visser1

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()); } }

7 replies

smacdonald2008
Level 10
October 16, 2015

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>

 
Runal_Trivedi
Level 6
October 16, 2015

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

Feike_Visser1
Adobe Employee
Adobe Employee
October 16, 2015

Can you try this?

${pageProperties['cq:lastModified'].toString}
January 23, 2020
No, It doesn't work. Renders Output as:-
Runal_Trivedi
Level 6
October 16, 2015

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

Feike_Visser1
Adobe Employee
Adobe Employee
October 16, 2015

Sightly tries to call methods that are available on the object you supplied, just basic java reflection I would say.

Feike_Visser1
Adobe Employee
Feike_Visser1Adobe EmployeeAccepted solution
Adobe Employee
October 16, 2015

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()); } }
April 2, 2020

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