Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
Is there a quick tag we can use to check if a resource exists using sightly? So we want to display default image if an image at a path doesn't exist
or is there a jstl/sling OOB tags that do that.
See comparisons in this article:
http://blogs.adobe.com/experiencedelivers/experience-management/sightly-intro-part-3-2/
for example - you can check the prop of a node - in this case a title.
<div data-sly-test="${ properties['jcr:title'].length > 3 }">Title is longer than 3</div>
Of course - you can always use Java with a Sightly component and check AEM resources via Java
Hope this helps
Use below code
<img src="${properties.imagePath ? properties.imagePath : '/content/dam/default.jpg' } />
Thanks
Views
Likes
Replies
Like