Select to view content in your preferred language

Disabling background fade when Popup appears

725
1
Jump to solution
03-14-2014 11:08 AM
AndrewBlakey
Deactivated User
Hi:

I'm trying to figure out the location of code that manages the background fade effect when popups occur. Whether these popups are for errors, login, etc.  I want to disable that effect.

Thanks!
Tags (2)
0 Kudos
1 Solution

Accepted Solutions
AndrewBlakey
Deactivated User
Aha. It's not being done by Flex Viewer. It's an inherent behaviour of popups.  This can be changed using these functions from within the popup component or where you would create/call the popup:

this.setStyle("modalTransparency",1); this.setStyle("modalTransparencyBlur",3); this.setStyle("modalTransparencyColor", #ff0000);

View solution in original post

0 Kudos
1 Reply
AndrewBlakey
Deactivated User
Aha. It's not being done by Flex Viewer. It's an inherent behaviour of popups.  This can be changed using these functions from within the popup component or where you would create/call the popup:

this.setStyle("modalTransparency",1); this.setStyle("modalTransparencyBlur",3); this.setStyle("modalTransparencyColor", #ff0000);
0 Kudos