[Spotfire]如何在Spotfire仪表板的不同选项卡中使用相同的spotfire Document属性控制元素来触发Ironpython脚本?目前我有一个通过激活 Ironpython 脚本的 Documentproperty 控件设置文档属性的 javascript。我们对 javascript 使用 JQuery UI 对话框。我希望此属性可用于仪表板中的所有选项卡。我应该如何定义 Documentproperty 控件,以便它可以用于从任何选项卡激活 Ironpython 脚本?
我创建了一个浮动 JS 控件,但是如果我切换选项卡,这不会更新文档属性。当前唯一可行的解决方案是,如果我在每个选项卡的文本区域中创建一个 documentProperty 控件。
$("#testInput").dialog({
autoOpen: false,
});
$("#myAlertButton").click(openDialog);
function openDialog(){
$("#testInput").dialog( "open" );
}
function refresh(){
document.location.reload();
}
</p>
我希望浮动控件值会反映在 documentProperty 中,但它不会改变。