On a Detail View, I've created a link to another view. I want to hide that link when a field value above it is equal to ZERO. I can't use the conditional display rules on this link (because it's a link and not a field). Is there another way to do this with the builder, or would I need to resort to javascript? I've been trying the following javascript and it isn't working. I'm just learning javascript so it could be making a simple mistake:
$(document).on('knack-scene-render.scene_664', function(page) {if ($(’#view_1024 td.kn-value .field_317’).text() == "0.00") { (’#view_1024 .field_320’).hide()
}
});