I am not able to get ${properties.imgUrl2} in the following html tag
<div style="background:url('${properties.imgUrl2}') no-repeat; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover;" class="row-item">
If I print this ${properties.imgUrl2} outside the background-url and div tag I can see this value on the html page
This style is displayed in browser as
<div style="background:url('') no-repeat; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover;" class="row-item">
Solved! Go to Solution.
Views
Replies
Total Likes
Views
Replies
Total Likes
Just to be specific
By adding @ context='uri' here solves the problem....
<div style="background:url(${properties.imgUrl2 @ context='uri' }) no-repeat; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover;" class="row-item">
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies