Switching Themes"
(4 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
__TOC__ | __TOC__ | ||
− | + | = Include Theme Jar = | |
+ | Before switching to a non-default theme, please ensure your application '''contains the corresponding theme jar''' first. Using the default theme doesn't require to include an extra jar file (it's bundled in ZK framework jars). | ||
+ | Since 10, breeze is no longer supported, you can use <code>iceblue_c</code>, if you migrate from an old theme: | ||
− | + | <syntaxhighlight lang='xml'> | |
+ | <dependency> | ||
+ | <groupId>org.zkoss.theme</groupId> | ||
+ | <artifactId>iceblue_c</artifactId> | ||
+ | <version>${zk.version}</version> | ||
+ | </dependency> | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | For example, since 8.6, the default theme is iceblue. If you want to use '''breeze''', you need to include its jar first: | ||
+ | <syntaxhighlight lang='xml'> | ||
+ | <dependency> | ||
+ | <groupId>org.zkoss.theme</groupId> | ||
+ | <artifactId>breeze</artifactId> | ||
+ | <version>${zk.version}</version> | ||
+ | </dependency> | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | Including a theme jar doesn't switch to that theme automatically. You need to explicitly apply the theme mentioned in the following sections. | ||
+ | |||
+ | = Theme Resolution Priority = | ||
+ | ZK determines(resolves) a theme in the following order: | ||
# Cookies | # Cookies | ||
# Library property | # Library property | ||
# Theme priority | # Theme priority | ||
+ | |||
= Apply a Theme for the Whole Application = | = Apply a Theme for the Whole Application = |
Latest revision as of 14:09, 27 February 2024
Include Theme Jar
Before switching to a non-default theme, please ensure your application contains the corresponding theme jar first. Using the default theme doesn't require to include an extra jar file (it's bundled in ZK framework jars).
Since 10, breeze is no longer supported, you can use iceblue_c
, if you migrate from an old theme:
<dependency>
<groupId>org.zkoss.theme</groupId>
<artifactId>iceblue_c</artifactId>
<version>${zk.version}</version>
</dependency>
For example, since 8.6, the default theme is iceblue. If you want to use breeze, you need to include its jar first:
<dependency>
<groupId>org.zkoss.theme</groupId>
<artifactId>breeze</artifactId>
<version>${zk.version}</version>
</dependency>
Including a theme jar doesn't switch to that theme automatically. You need to explicitly apply the theme mentioned in the following sections.
Theme Resolution Priority
ZK determines(resolves) a theme in the following order:
- Cookies
- Library property
- Theme priority
Apply a Theme for the Whole Application
Specify a theme name as a value. This will apply to the whole application as a default theme.
zk.xml
<library-property>
<name>org.zkoss.theme.preferred</name>
<value>deepsea</value> <!-- no whitespace in theme names -->
</library-property>
Check the complete theme name of the theme pack at ZK Developer's Reference/Theming and Styling/ZK Official Themes#All Theme Names of Theme Pack
Dynamically switching themes using Cookies
To provide different themes for different end users (sessions), you can use cookies since it's stored in a browser.
Themes.setTheme(Executions.getCurrent(), "custom");
Executions.sendRedirect("");
Internally, CookieThemeResolver provides this functionality.
Dynamically Switching Themes Using Library Property
Library property is used to apply a preferred theme when the current theme setting could not be obtained from Cookies. Notice that the property change affects the whole application (all end users).
Programmatically:
Library.setProperty("org.zkoss.theme.preferred", "custom");
Executions.sendRedirect("");
Theme Priority
If the previous two options do not yield any result, the theme with the highest priority would be applied. Theme priority is usually assigned when registering a theme but could also be changed dynamically.
Please refer to Themes for its family of register() methods.
Customize the Theme Resolution Process
Web developers could also add other ways for setting the current theme by writing a custom ThemeResolver'.
If you would like to communicate theme name via session instead, you would create a class like the following:
package foo;
public class SessionThemeResolver implements ThemeResolver {
@Override
public String getTheme(HttpServletRequest request) {
Session sess = request.getSession();
if (sess != null) {
return sess.getAttribute("mytheme");
}
}
@Override
public void setTheme(HttpServletRequest request, HttpServletResponse response, String themeName) {
Session sess = request.getSession();
if (sess != null) {
sess.setAttribute("mytheme", themeName);
}
}
}
and configure the custom ThemeResolver in WEB-INF/zk.xml.
<zk>
<desktop-config>
<theme-resolver-class>foo.SessionThemeResolver</theme-resolver-class>
</desktop-config>
</zk>
To access the current theme resolver, please refer to ThemeFns.getThemeResolver() and ThemeFns.setThemeResolver(ThemeRegistry).