burhan ahmed Posted February 12, 2019 Share Posted February 12, 2019 Hi, I want to perform drill through feature. onclick change the page and filter the targeted or next page. Please tell me the steps which i have to follow to perform drill through. Thanks in advance Link to comment Share on other sites More sharing options...
Sayali Patil Posted February 13, 2019 Share Posted February 13, 2019 Hello, Please try this code to change the Active page reference and apply the required filtering scheme on that page. from Spotfire.Dxp.Application.Filters import * mypage=None for page in Document.Pages: if page.Title == "page2": mypage=page Document.ActivePageReference = page panels=mypage.Panels (found, filterPanel) = panels.TryGetPanel [FilterPanel]() for filteringScheme in Document.FilteringSchemes: filteringSelection = filteringScheme.FilteringSelectionReference if filteringSelection.Name == "MyFilteringScheme": filterPanel.FilteringSchemeReference = filteringScheme Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now