Changing GWT theme Dynamically

Posted by Nagesh Salunke on Stack Overflow See other posts from Stack Overflow or by Nagesh Salunke
Published on 2012-10-09T09:17:35Z Indexed on 2012/10/09 9:37 UTC
Read the original article Hit count: 215

Filed under:

I have a GWT application, I created appBlueTheme.jar,appOrangeTheme.jar and added to BuildPath of project. My module.gwt.xml file has

 ....
<inherits name='appBlueTheme.appBlueTheme'/>
<inherits name='appOrangeTheme.appOrangeTheme'/>
 ...

But in my app i see the effect of appBlueTheme as GWT doc say

"inherited modules will be cascaded in the order they are listed"

I want theme to be changed based on user response. How do i achieve this.?

Thanks in advance..

© Stack Overflow or respective owner

Related posts about gwt