v8.2p_2012-08-20/Pro Deployment (built 2012-08-20)
Admin Console and Developer Console loose styles and images completely. With <inherits name="com.smartgwtpro.SmartGwtPro"/> and no Graphite it works fine.
Probably that's becase adminConsole.jsp contains
It results in
while the valid link is
Is there a way to fix this issue without changing smartgwtpro.jar?
Thx.
Code:
<module rename-to="builtinds">
<inherits name='com.google.gwt.user.User'/>
<inherits name="com.smartgwt.tools.SmartGwtTools"/>
[b]<inherits name="com.smartgwtpro.SmartGwtProNoTheme"/>
<inherits name="com.smartclient.theme.graphite.Graphite"/>[/b]
<inherits name="com.smartgwtpro.tools.Tools"/>
<entry-point class='com.smartgwt.sample.client.BuiltInDS'/>
</module>
Probably that's becase adminConsole.jsp contains
Code:
<isomorphic:loadISC modulesDir="system/development/"
includeModules="DBConsole,Tools"
[b]skin="Enterprise"[/b]/>
Code:
<SCRIPT SRC=../../builtinds/sc/skins/Enterprise/load_skin.js?isc_version=v8.2p_2012-08-20.js></SCRIPT>
Code:
<SCRIPT SRC=../../builtinds/sc/skins/Graphite/load_skin.js?isc_version=v8.2p_2012-08-20.js></SCRIPT>
Thx.
Comment