I would like to execute a piece of code with all dam asset resources. How can I achieve this just like we do with a cq:Page? Any suggestions appreciated
Thanks
Sanjay
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
I think you can do it for asset too. See this below example code snippet.
mimetype.html
<div data-sly-use.asset="com.day.cq.dam.api.Asset">
<p>${asset.mimeType}</p>
</div>
The data-sly-use statement directs HTL to adapt the current Resource to an Asset and give it the local name asset. It then calls the getMimeType method of Asset using the HTL getter shorthand: asset.mimeType.
See this below Adobe documentation for more reference:
//https://docs.adobe.com/docs/en/htl/docs/use-api/java.html
Hope this helps!
~ Ratna.
Views
Replies
Total Likes
Hi,
I think you can do it for asset too. See this below example code snippet.
mimetype.html
<div data-sly-use.asset="com.day.cq.dam.api.Asset">
<p>${asset.mimeType}</p>
</div>
The data-sly-use statement directs HTL to adapt the current Resource to an Asset and give it the local name asset. It then calls the getMimeType method of Asset using the HTL getter shorthand: asset.mimeType.
See this below Adobe documentation for more reference:
//https://docs.adobe.com/docs/en/htl/docs/use-api/java.html
Hope this helps!
~ Ratna.
Views
Replies
Total Likes
We have many articles that show use of assets and HTL. See http://scottsdigitalcommunity.blogspot.ca/2016/02/creating-aem-sightly-movie-component.html?m=0
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Likes
Replies