OK, so still working my way through testing upgrading to 12.1, and i think i've found something else strange.
I have upgraded the load_skin and skin_styles to incorporate your changes since the last time we forked our skin.
As i mentioned in another thread, our custom skin resides in "/skins/myskin" in our war, as it always have. To point this out, i have this in the beginning of the load_skin:
, and in my jsp loading page i have
What i can see now in 12.1 is that i see various requests for image URLs that are wrong...
Like this:
or this:
...or this:
But it's only for some resources, others are correct, like:
Notice that the app name and /sc/ directory is included for some reason, although i have not referred to it anywhere in my skin related code. This did not happen in prior smartgwt versions as far as i know.
Any thoughts?
I have upgraded the load_skin and skin_styles to incorporate your changes since the last time we forked our skin.
As i mentioned in another thread, our custom skin resides in "/skins/myskin" in our war, as it always have. To point this out, i have this in the beginning of the load_skin:
Code:
isc.Page.setSkinDir("skins/myskin/"); isc.Page.loadStyleSheet("skins/myskin/skin_styles.css", theWindow);
Code:
<script type="text/javascript" language="javascript" src="/skins/myskin/load_skin.js"></script>
Like this:
Code:
http://127.0.0.1:8888/myapp/sc/skins/myskin/images/blank.gif
Code:
http://127.0.0.1:8888/myapp/sc/skins/myskin/images/ToolStrip/separator.png
Code:
http://127.0.0.1:8888/myapp/sc/skins/myskin/images/loadingSmall.gif
Code:
http://127.0.0.1:8888/skins/myskin/images/pickers/pickers_sprite.png
Any thoughts?
Comment