Skip to Main Content
Spotfire Ideas Portal
Status Implemented
Product Spotfire
Categories Text Area
Created by Guest
Created on Jan 31, 2018

Action Control: Ability to refresh one or more data tables using action control

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
  • ADMIN RESPONSE
    Jun 14, 2024

    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.

    Learn more about everything new in Spotfire 14.4.

  • Attach files
  • Guest
    Reply
    |
    Jul 4, 2018

    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()