Molds

From Documentation
Revision as of 02:54, 29 September 2020 by Hawk (talk | contribs)

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 : 2020/09/29


Version Date Content
     



Last Update : 2020/09/29

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