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
Recommended Comments
There are no comments to display.