LabelImageElement"
From Documentation
m |
m (→IconSclass) |
||
Line 58: | Line 58: | ||
[since 7.0.0] | [since 7.0.0] | ||
− | ZK 7.0.0 integrate with [http://fortawesome.github.io/Font-Awesome | + | ZK 7.0.0 integrate with [http://fortawesome.github.io/Font-Awesome/ FontAwesome 4.0.1] with prefix z-icon. To use it, just add iconSclass attribute. |
For example, add home icon on Button, | For example, add home icon on Button, |
Revision as of 09:07, 28 October 2013
Label Image Element
- Demonstration: N/A
- Java API: LabelImageElement
- JavaScript API: LabelImageWidget
Employment/Purpose
An HTML element with a label and an image.
Preload Image
since 6.0.0
The feature is applied to all of the LabelImageElement and Image components.
By default the preload function is disabled, so users have to specify the custom-attributes and set it to true. For example,
<button image="xxx.png">
<custom-attributes org.zkoss.zul.image.preload="true"/>
</button>
Or specify it just below the root component.
For example,
<window>
<custom-attributes org.zkoss.zul.image.preload="true"/>
<button image="xxx.png"/>
<image src="xxx.png"/>
</window>
As you can see, the custom-attributes will be checked recursively (see also Scope.getAttribute(String, boolean)).
[since 6.5.2]
The feature can also applied from zk.xml as a library properity.
For example,
<!-- zk.xml -->
<zk>
<library-property>
<name>org.zkoss.zul.image.preload</name>
<value>true</value>
</library-property>
</zk>
IconSclass
[since 7.0.0]
ZK 7.0.0 integrate with FontAwesome 4.0.1 with prefix z-icon. To use it, just add iconSclass attribute.
For example, add home icon on Button,
<window>
<button iconSclass="z-icon-home" />
</window>
Example
N/A
Supported Events
None | None |
- Inherited Supported Events: LabelElement
Supported Children
*All
Version History
Version | Date | Content |
---|---|---|
7.0.0 | October 2012 | Add iconSclass attribute with FontAwesome supported. |
6.0.0 | September 2011 | A way to pre-load images since many UIs depend on the size of an image |