hello friends! i need to show an image only if in the database the "featured" field is full.
If you don't have anything inside, you don't have to show anything. it is
For use within a repeater. Could you help me please?
$w.onReady(() => {
$w("#dataset1").onReady(() => {
$w("#repeater1").forEachItem(($item, itemData) => {
if(!itemData.featured){$item("#image1").hide();}
})
})
})
ThankS!!!