LabelImageElement"
From Documentation
m (→Preload Image) |
m (→Preload Image) |
||
Line 39: | Line 39: | ||
As you can see, the ''custom-attributes'' will be checked recursively (see also <javadoc method="getAttribute(java.lang.String,boolean)">org.zkoss.zk.ui.ext.Scope</javadoc>). | As you can see, the ''custom-attributes'' will be checked recursively (see also <javadoc method="getAttribute(java.lang.String,boolean)">org.zkoss.zk.ui.ext.Scope</javadoc>). | ||
+ | |||
+ | [since 6.5.2] | ||
+ | The feature can also applied from zk.xml as a library properity. | ||
+ | |||
+ | For example, | ||
+ | <source lang="xml"> | ||
+ | <!-- zk.xml --> | ||
+ | <zk> | ||
+ | <library-property> | ||
+ | <name>org.zkoss.zul.image.preload</name> | ||
+ | <value>true</value> | ||
+ | </library-property> | ||
+ | </zk> | ||
+ | </source> | ||
=Example= | =Example= |
Revision as of 08:57, 7 March 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>
Example
N/A
Supported Events
None | None |
- Inherited Supported Events: LabelElement
Supported Children
*All
Version History
Version | Date | Content |
---|---|---|
6.0.0 | September 2011 | A way to pre-load images since many UIs depend on the size of an image |