I've just updated my application from using SmartGwt v2.2 to v2.4
The app runs well, but I'm trying to use the new Simplicity theme, but its not displaying. I'm still getting the default Enterprise theme.
(I have already added smartgwt-skins to my build path)
Here's a snippet from by module.xml file:
The app runs well, but I'm trying to use the new Simplicity theme, but its not displaying. I'm still getting the default Enterprise theme.
(I have already added smartgwt-skins to my build path)
Here's a snippet from by module.xml file:
Code:
<?xml version="1.0" encoding="UTF-8"?> <module rename-to='mycoolapp_gwt'> <inherits name='com.google.gwt.user.User'/> <inherits name="com.smartgwt.SmartGwt"/> <inherits name="com.smartclient.theme.simplicity.SimplicityResources"/> <entry-point class='com.med.gwt.client.Mycoolapp_gwt'/> </module>
Comment