A"
From Documentation
m (→Use cases) |
(→A) |
||
Line 6: | Line 6: | ||
*Java API: <javadoc>org.zkoss.zul.A</javadoc> | *Java API: <javadoc>org.zkoss.zul.A</javadoc> | ||
*JavaScript API: <javadoc directory="jsdoc">zul.wgt.A</javadoc> | *JavaScript API: <javadoc directory="jsdoc">zul.wgt.A</javadoc> | ||
+ | *Style Guide: [[ZK_Style_Guide/XUL_Component_Specification/A | A]] | ||
= Employment/Purpose = | = Employment/Purpose = |
Revision as of 03:53, 23 November 2010
A
Employment/Purpose
The same as HTML A tag.
Example
<a href="http://www.zkoss.org" label="Visit ZK!"/>
In additions, you could add child components to A too:
<a href="http://www.zkoss.org" label="Visit ZK!" image="zk.png">
<grid>
<rows>
<row>What ever content</row>
</rows>
</grid>
</a>
Notice that a child component might also handle the mouse click, so the final result of clicking on a child component is really up to which child component is used.
Supported Events
None | None |
- Inherited Supported Events: LabelImageElement
Supported Children
*ALL
Use Cases
Version | Description | Example Location |
---|---|---|
Version History
Version | Date | Content |
---|---|---|
5.0.5 | October, 2010 | A supports any children. |