Hi all
I know this question has been asked many time in this forum, and I've read them all, but none of them worked for me.
So i've included the smartgwt.jar and smartgwt-skins.jar files in the classpath, and modified my gwt.xml file to the following
<module>
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name='com.google.gwt.user.User' />
<inherits name='com.gwt.Gwt' />
<inherits name='com.gwt.rebind.Rebind' />
<inherits name="com.smartgwt.SmartGwt" />
<!-- <inherits name="com.smartgwt.SmartGwtNoScript" />-->
<!-- <inherits name="com.smartclient.SmartClientDefault"/>-->
<!-- <inherits name="com.smartclient.theme.enterprise.EnterpriseResources" />-->
<!-- <inherits name="com.smartclient.theme.blackops.BlackOpsResources" />-->
<inherits name="com.smartclient.theme.silverwave.SilverWaveResources" />
<!-- <inherits name="com.smartclient.theme.treefrog.TreeFrogResources" />-->
<!-- <inherits name="com.smartclient.theme.fleet.FleetResources" />-->
<!-- Inherit the default GWT style sheet. You can change -->
<!-- the theme of your GWT application by uncommenting -->
<!-- any one of the following lines. -->
<!-- <inherits name='com.google.gwt.user.theme.standard.Standard'/>-->
<!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
<!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> -->
<!-- Specify the app entry point class. -->
<entry-point class='com.gwt.cisternroi.client.Admin' />
</module>
but when i started the hosted mode, the theme is still defaulted to the Enterprise one even though I specified it to use SilverWave... May someone please help me with this problem? Thanks so much
I know this question has been asked many time in this forum, and I've read them all, but none of them worked for me.
So i've included the smartgwt.jar and smartgwt-skins.jar files in the classpath, and modified my gwt.xml file to the following
<module>
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name='com.google.gwt.user.User' />
<inherits name='com.gwt.Gwt' />
<inherits name='com.gwt.rebind.Rebind' />
<inherits name="com.smartgwt.SmartGwt" />
<!-- <inherits name="com.smartgwt.SmartGwtNoScript" />-->
<!-- <inherits name="com.smartclient.SmartClientDefault"/>-->
<!-- <inherits name="com.smartclient.theme.enterprise.EnterpriseResources" />-->
<!-- <inherits name="com.smartclient.theme.blackops.BlackOpsResources" />-->
<inherits name="com.smartclient.theme.silverwave.SilverWaveResources" />
<!-- <inherits name="com.smartclient.theme.treefrog.TreeFrogResources" />-->
<!-- <inherits name="com.smartclient.theme.fleet.FleetResources" />-->
<!-- Inherit the default GWT style sheet. You can change -->
<!-- the theme of your GWT application by uncommenting -->
<!-- any one of the following lines. -->
<!-- <inherits name='com.google.gwt.user.theme.standard.Standard'/>-->
<!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
<!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> -->
<!-- Specify the app entry point class. -->
<entry-point class='com.gwt.cisternroi.client.Admin' />
</module>
but when i started the hosted mode, the theme is still defaulted to the Enterprise one even though I specified it to use SilverWave... May someone please help me with this problem? Thanks so much
Comment