Can we use a data-sly-use in an html or anyother way along with an asset?
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
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
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.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.