Change skins during runtime

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 1458

This topic has not yet been written. The content below is from the topic description.
4.4.6. Changing skin in runtime You can change skins during runtime by defining the following EL-expression in your web.xml. org.richfaces.SKIN #{skinBean.skin} The skinBean code looks like this: public class SkinBean { private String skin; public String getSkin() { return skin; } public void setSkin(String skin) { this.skin = skin; } } You must also set the skin property's initial value in the configuration file. To set classic: skinBean SkinBean session skin classic