Molds"

From Documentation
m ((via JWB))
m (replace tt with code (via JWB))
Line 3: Line 3:
 
A component could have multiple different visual appearances. Each appearance is called a '''mold'''. A mold is basically a combination of a DOM structure plus CSS. That is, it is the visual representation of a component. Developers could dynamically change the mold by use of <javadoc method="setMold(java.lang.String)" type="interface">org.zkoss.zk.ui.Component</javadoc>.
 
A component could have multiple different visual appearances. Each appearance is called a '''mold'''. A mold is basically a combination of a DOM structure plus CSS. That is, it is the visual representation of a component. Developers could dynamically change the mold by use of <javadoc method="setMold(java.lang.String)" type="interface">org.zkoss.zk.ui.Component</javadoc>.
  
All components support at least a mold called <tt>default</tt>, which is the default value. Some components might have support two or more molds. For example, tabbox supports both <tt>default</tt> and <tt>accordion</tt> molds.
+
All components support at least a mold called <code>default</code>, which is the default value. Some components might have support two or more molds. For example, tabbox supports both <code>default</code> and <code>accordion</code> molds.
  
If <tt>tabbox</tt>'s <tt>mold</tt> is not set, it uses the default mold.
+
If <code>tabbox</code>'s <code>mold</code> is not set, it uses the default mold.
 
<source lang="xml" highlight='1'>
 
<source lang="xml" highlight='1'>
 
<tabbox>
 
<tabbox>
Line 16: Line 16:
 
</source>
 
</source>
  
And you could set <tt>tabbox</tt>'s mold to "accordion" to change the look.
+
And you could set <code>tabbox</code>'s mold to "accordion" to change the look.
 
<source lang="xml" highlight='1'>
 
<source lang="xml" highlight='1'>
 
<tabbox mold="accordion">
 
<tabbox mold="accordion">

Revision as of 14:14, 12 January 2022

A component could have multiple different visual appearances. Each appearance is called a mold. A mold is basically a combination of a DOM structure plus CSS. That is, it is the visual representation of a component. Developers could dynamically change the mold by use of Component.setMold(String).

All components support at least a mold called default, which is the default value. Some components might have support two or more molds. For example, tabbox supports both default and accordion molds.

If tabbox's mold is not set, it uses the default mold.

<tabbox>
	<tabs>
		<tab label="First tab" />
		<tab label="Second tab" />
	</tabs>
	...
</tabbox>

And you could set tabbox's mold to "accordion" to change the look.

<tabbox mold="accordion">
	<tabs>
		<tab label="First tab" />
		<tab label="Second tab" />
	</tabs>
	...
</tabbox>

To know which mold a component supports, please refer to ZK Component Reference.

Version History

Last Update : 2022/01/12


Version Date Content
     



Last Update : 2022/01/12

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.