Rayes k Posted December 19, 2017 Share Posted December 19, 2017 Hi All, I do have a scenario that Either I should suppress the "Notification Window", which shows the "Warnings, Error Messages etc.." or I would like to clear all warnings of the Notification window using "Iron python". Let me know incase some one could help me in this. Thanks in Advance for your help, Regards, Rayees Link to comment Share on other sites More sharing options...
Andrew Berridge Posted December 19, 2017 Share Posted December 19, 2017 Hi Rayees, Unfortunately this isn't possible at the moment. We don't have a public API that can interact with the notification service in Spotfire. I think it's a good idea - please can you submit an idea via the Ideas portal Link at the top of the page. Thanks, Andrew (TIBCO Data Science) Link to comment Share on other sites More sharing options...
Yogananda Gowda Posted August 23, 2019 Share Posted August 23, 2019 create a javascript with below code and place it within a text area in the analysis. Note: this will hide notification from Spotfire desktop client also. $(document).ready(function(){ //alert("ABC"); $('.sfx_notification-panel_228').hide(); $('.sfx_checkbox_594').prop('checked', false); $('div[title=Notifications]').hide(); }); window.setInterval(function(){ $('.sfx_notification-panel_228').hide(); $('.sfx_checkbox_594').prop('checked', false); $('div[title=Notifications]').hide(); }, 100); Link to comment Share on other sites More sharing options...
Christian Blumenroehr Posted February 11, 2020 Share Posted February 11, 2020 As I did not see this yet on the Ideas Portal I just added it:https://ideas.tibco.com/ideas/TS-I-7612 Please vote for it. 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