Hi all,
I am trying to hide empty field in Popup, i used ArcadeExpression:
IIF (IsEmpty($feature.Location), "", "block");
and jQuery:
$('table.esri-widget__table tr').each(function(){
if($(this).children('td:empty').length === $(this).children('td').length){
$(this).remove(); // or $(this).hide();
}
}); but none of them works.
How can i hide fields "tr" in popup table? Any new idea?
Thanks