Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
Hi,
is there a possiblitiy to convert the string to node in sightly.
if i have ${item.name} which is the name of the node . But ${item.name} is retiring as string. i need to access the properties of the node.
Any suggestions will be helffull
You can get the property of the node in HTL using their path as shown below:
<sly data-sly-use.page="/content/dev-aem/en/jcr:content">${page.jcr:title}</sly>
Also, I would recommend writing these logics in JS use API or Java classes.
try ${item.propertyName}
If you want to get child node from the item node based on the name of the node, then you need to write JS use API or Java Model.
Views
Likes
Replies