Jump to content
  • How to toggle (On/Off) filter panel using IronPython Script in Spotfire®


    The following IronPython script shows how to toggle the filter panel in a page on and off.

    Introduction

    The following IronPython script shows how to toggle the filter panel in a page on and off.

    Code sample

    # Copyright © 2017. TIBCO Software Inc.  Licensed under TIBCO BSD-style license.
    
    if (Document.ActivePageReference.FilterPanel.Visible == False):
       Document.ActivePageReference.FilterPanel.Visible = True
    else:
       Document.ActivePageReference.FilterPanel.Visible = False
     

    References

    License:  TIBCO BSD-Style License


    User Feedback

    Recommended Comments

    There are no comments to display.


×
×
  • Create New...