Hi All,
I am seeing issue with sightly expression evolution that it's giving a empty value when it's part of CSS's method.
<div class="showcase-basic" style="background-image: url('${homePageBannerComponent.fileReference}')">
Where as if i retrieve the independently it's returning correct value.
Image:${homePageBannerComponent.fileReference}
What's causing the issue and preventing to get this value.
Thanks,
Kishore
Solved! Go to Solution.
This should work
<div class="showcase-basic" style="background-image: url(${properties.text @ context='uri'})"> Image </div>
** Replace properties.text with homePageBannerComponent.fileReference
This should work
<div class="showcase-basic" style="background-image: url(${properties.text @ context='uri'})"> Image </div>
** Replace properties.text with homePageBannerComponent.fileReference
Working, thank you.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies