Jump to content

How do I disable Notification window or clear all warnings of Notification window


Rayes k

Recommended Posts

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

  • 1 year later...

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

  • 5 months later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...