You can do something like this under the dynamicDataset’s onReady function:
let itemObj = $w("#dynamicDataset").getCurrentItem();
if(itemObj.videoUrl.length > 0) {
$w("#videoElement").show();
}
You can do something like this under the dynamicDataset’s onReady function:
let itemObj = $w("#dynamicDataset").getCurrentItem();
if(itemObj.videoUrl.length > 0) {
$w("#videoElement").show();
}