Would like the ability to have an action control button that can reload data from one or more data tables in a Spotfire dashboard.
Implemented in | 14.4 |
Action mods, introduced in Spotfire 14.4, extend Spotfire with a new type of lightweight reusable action component that can be tailored for specific domains and use cases. Using actions within visual analytics provides extensive options for carrying out tasks and enhancing workflows across all analytic elements, spanning from visualizations to data.
You can do this pretty easily with an ironpython script.
Use this simple script (copy and paste for multiple tables). Add a parameter called "Table" and connected it to your table.
if Table.IsRefreshable and Table.NeedsRefresh:
Table.Refresh()