Dec 14, 2020

Spotfire Hide show control based on list box selection

$("#showHidecontainer").hide();

$('#Ant').click(function(){

var PrdVal = $("#Ant .sfpc-selected").text();

if (PrdVal == "Test")

{

$("#showHidecontainer").show();  

}

else

{

$("#showHidecontainer").hide();  

}; 

});