PDA

View Full Version : Slate Theme



marman
17 Jun 2009, 5:34 PM
Does anyone know how to get the Slate theme to work with GXT 1.5.3?

I added the following to my main Class...


ThemeManager.register( Slate.SLATE );
GXT.setDefaultTheme( Slate.SLATE, false );When i try running it, i get the following Exception and nothing happens:


No source code is available for type com.extjs.gxt.themes.client.Slate; did you forget to
inherit a required module?

micgala
18 Jun 2009, 12:24 AM
Did you forget to inherit a required module?

Try adding this to your gwt module:

<inherits name='com.extjs.gxt.themes.Themes' />

marman
18 Jun 2009, 3:07 AM
Did you forget to inherit a required module?

Try adding this to your gwt module:

<inherits name='com.extjs.gxt.themes.Themes' />


That is exactly it! Thank you very much!