Code:
document.write("<"+"script src=app/sc/skins/Simplicity/load_skin.js?isc_version=7.1.js><"+"/script>");
Make sure you have cleared the browser cache as well.
document.write("<"+"script src=app/sc/skins/Simplicity/load_skin.js?isc_version=7.1.js><"+"/script>");
<module rename-to="showcase">
<inherits name='com.google.gwt.user.User'/>
<inherits name="com.google.gwt.core.Core"/>
<inherits name="com.google.gwt.user.History"/>
<inherits name="com.smartgwt.SmartGwtNoScript"/>
<inherits name="com.smartgwt.tools.SmartGwtTools"/>
<inherits name="com.smartclient.theme.enterprise.EnterpriseResources"/>
<inherits name="com.smartclient.theme.enterpriseblue.EnterpriseBlueResources"/>
<inherits name="com.smartclient.theme.graphite.GraphiteResources"/>
<inherits name="com.smartclient.theme.simplicity.SimplicityResources"/>
<entry-point class='com.smartgwt.sample.showcase.client.Showcase'/>
...
<module>
<inherits name='com.google.gwt.user.User'/>
<inherits name="com.google.gwt.xml.XML"/>
<inherits name="com.google.gwt.i18n.I18N"/>
<inherits name="com.google.gwt.json.JSON"/>
<inherits name="com.google.gwt.http.HTTP"/>
<inherits name="com.google.gwt.event.Event"/>
<inherits name='com.smartclient.SmartClientNoScript'/>
<entry-point class='com.smartgwt.client.SmartGwtEntryPoint'/>
<define-linker name="smartgwt" class="com.smartgwt.linker.SmartGwtLinker" />
<add-linker name="smartgwt" />
</module>
<script type="text/javascript">
var currentSkin = "EnterpriseBlue";
if (window.location.hash){
if (window.location.hash == '#simple'){
currentSkin = "Simplicity";
}
}
document.write("<"+"script src=app/sc/skins/" + currentSkin + "/load_skin.js?isc_version=7.1.js><"+"/script>");
</script>
<inherits name='com.smartgwt.SmartGwtNoScript'/>
<script src="sc/modules/ISC_Core.js"/>
<script src="sc/modules/ISC_Foundation.js"/>
<script src="sc/modules/ISC_Containers.js"/>
<script src="sc/modules/ISC_Grids.js"/>
<script src="sc/modules/ISC_Forms.js"/>
<script src="sc/modules/ISC_RichTextEditor.js"/>
<script src="sc/modules/ISC_Calendar.js"/>
<script src="sc/modules/ISC_DataBinding.js"/>
<script src="sc/modules/ISC_PluginBridges.js"/>
<inherits name="com.smartclient.theme.simplicity.SimplicityResources"/>
<inherits name="com.smartclient.theme.enterpriseblue.EnterpriseBlueResources"/>
Leave a comment: