[Spotfire]How to use the same spotfire Document property control element across different tabs of Spotfire dashboard to trigger Ironpython script ? Currently I have a javascript that sets the documentproperty via a Documentproperty control which activates the Ironpython script. We use JQuery UI dialog for the javascript. I want to have this property available to all tabs within the Dashboard. How should I define the Documentproperty control so it can be used to activate the Ironpython script from any tab ?
I created a floating JS control, but this does not update the documentproperty if I switch tabs. The only solution that works currently is if I create a documentProperty control in a Text area for each tab.
$("#testInput").dialog({
autoOpen: false,
});
$("#myAlertButton").click(openDialog);
function openDialog(){
$("#testInput").dialog( "open" );
}
function refresh(){
document.location.reload();
}
I expect the floating control value to be reflected in the documentProperty, but it does not change.