You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setting the backgroundURL field in the Configuration Admin widget will break OWF in IE 11.
Steps to reproduce
Download a 7.17.1 GA bundle
Run the bundle
Login with the stock testAdmin1 account
Open the Admin App and select the Configuration page
Select the "Branding" option
Enter a path or URL in the backgroundURL field. Exit that field so the value is persisted
Logout and close your browser.
Open IE 11 and attempt to login to the OWF instance
Observed behavior
The access warning dialog does not appear. Instead, the user is presented with a screen that contains only OWF's background pattern. No menus, controls or dashboards appear.
Probable Cause
webapp/js/app.js calls Ext.util.CSS.createStyleSheet(css); when the backgroundURL is set. This invokes a call in the underlying ExtJS framework that is not compatible with IE 11. This line should use another method of modifying CSS.
Summary
Setting the backgroundURL field in the Configuration Admin widget will break OWF in IE 11.
Steps to reproduce
Observed behavior
The access warning dialog does not appear. Instead, the user is presented with a screen that contains only OWF's background pattern. No menus, controls or dashboards appear.
Probable Cause
webapp/js/app.js calls Ext.util.CSS.createStyleSheet(css); when the backgroundURL is set. This invokes a call in the underlying ExtJS framework that is not compatible with IE 11. This line should use another method of modifying CSS.
See 2318ef8 for related work.
Workaround
The text was updated successfully, but these errors were encountered: