Per your recommendation, I've copied one of the skins to a new location and have referenced the skin in my JSP with
<isomorphic:loadISC skin="Lite" runat="server" isomorphicURI="/lite/isomorphic/"/>
which produces this JS:
<SCRIPT SRC=/lite/isomorphic/skins/Lite/load_skin.js?isc_version=5.5.1.js></SCRIPT>
It, however, is still attempting to download images from the SmartClient skin directory.
I looked at load_skin.js and I see
//----------------------------------------
// Specify skin directory
//----------------------------------------
// must be relative to your application file or isomorphicDir
isc.Page.setSkinDir("[ISOMORPHIC]/skins/SmartClient/")
embedded in the file. I changed this to "Lite" but I'm still having problems. I deleted the .gz version hoping SmartClient would regen (as my WinZip won't create this file for me), but it has not. Perhaps it's a cache thing. I've deleted my browser cache and I've restarted the JBOSS server, to no avail.
Anyway, the documentation doesn't address this. I would think the skindir would be passed into the system by <isomorphic:loadISC> instead of being hardcoded in the .JS file.
<isomorphic:loadISC skin="Lite" runat="server" isomorphicURI="/lite/isomorphic/"/>
which produces this JS:
<SCRIPT SRC=/lite/isomorphic/skins/Lite/load_skin.js?isc_version=5.5.1.js></SCRIPT>
It, however, is still attempting to download images from the SmartClient skin directory.
I looked at load_skin.js and I see
//----------------------------------------
// Specify skin directory
//----------------------------------------
// must be relative to your application file or isomorphicDir
isc.Page.setSkinDir("[ISOMORPHIC]/skins/SmartClient/")
embedded in the file. I changed this to "Lite" but I'm still having problems. I deleted the .gz version hoping SmartClient would regen (as my WinZip won't create this file for me), but it has not. Perhaps it's a cache thing. I've deleted my browser cache and I've restarted the JBOSS server, to no avail.
Anyway, the documentation doesn't address this. I would think the skindir would be passed into the system by <isomorphic:loadISC> instead of being hardcoded in the .JS file.
Comment