Hi,
I'm using theme 25 and my theme error page is "No Tabs - No Sidebar", Application Express 4.2.1.00.08
If I receive an error in my application, my error page has no style.
When I compare a page displaying normally and the error page (with the same template) I notice file references are missing from both the JS & CSS "File URLs" attributes.
The template shows JS & CSS respectively - all are included when rendering a normal page. The variables are application level substitution strings.
#IMAGE_PREFIX#libraries/modernizr/2.5.3/modernizr.min.js?v=#APEX_VERSION#
[if lt IE 9]#IMAGE_PREFIX#libraries/respond-js/1.1.0/respond.min.js?v=#APEX_VERSION#
&THEME_LOCATION.js/4_2#MIN#.js?v=#APEX_VERSION#
&TEMPLATE_LOCATION.vbs_1.0.js
&JS_LOCATION.
&THEME_LOCATION.css/4_2.css?v=#APEX_VERSION#
&THEME_LOCATION.css/responsive_grid.css?v=#APEX_VERSION#
&TEMPLATE_LOCATION.vbs_1.0.css
&CSS_LOCATION.
What is rendered is only
<script type="text/javascript" src="/i/libraries/modernizr/2.5.3/modernizr.min.js?v=4.2.1.00.08"></script>
<!--[if lt IE 9]><script type="text/javascript" src="/i/libraries/respond-js/1.1.0/respond.min.js?v=4.2.1.00.08"></script><![endif]-->
<script type="text/javascript" src="/i/themes/our_theme/custom/cons/cons_1.0.js"></script>
<!--[if IE]><link rel="stylesheet" href="/i/css/apex_ie.min.css?v=4.2.1.00.08" type="text/css" /><![endif]-->
<link rel="stylesheet" href="/i/libraries/jquery-ui/1.8.22/themes/base/jquery-ui.min.css" type="text/css" />
<link rel="stylesheet" href="/i/themes/our_theme/custom/cons/cons_1.0.css" type="text/css" />
I tried replacing the substitution strings in the missing files with the full path and they are still absent.
Scott