Caption"

From Documentation
(9 intermediate revisions by 6 users not shown)
Line 3: Line 3:
 
= Caption =
 
= Caption =
  
* Demonstration: [http://www.zkoss.org/zkdemo/userguide/#l6 Caption]  
+
*Demonstration: [http://www.zkoss.org/zkdemo/layout/group_box Groupbox]
 
*Java API: <javadoc>org.zkoss.zul.Caption</javadoc>
 
*Java API: <javadoc>org.zkoss.zul.Caption</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zul.wgt.Caption</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zul.wgt.Caption</javadoc>
 +
*Style Guide: [[ZK_Style_Guide/XUL_Component_Specification/Caption| Caption]]
  
 
= Employement/Purpose =
 
= Employement/Purpose =
 
A header for a Groupbox. It may contain either a text label, using <javadoc method="setLabel(java.lang.String)">org.zkoss.zul.impl.LabelElement</javadoc>, or child elements for a more complex caption.
 
A header for a Groupbox. It may contain either a text label, using <javadoc method="setLabel(java.lang.String)">org.zkoss.zul.impl.LabelElement</javadoc>, or child elements for a more complex caption.
 +
 +
= 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,
 +
 +
<source lang="xml" high="2">
 +
<caption image="xxx.png" label="caption">
 +
  <custom-attributes org.zkoss.zul.image.preload=”true”/>
 +
</caption>
 +
</source>
 +
 +
Or specify it just below the root component.
 +
 +
For example,
 +
 +
<source lang="xml" high="2">
 +
<window>
 +
  <custom-attributes org.zkoss.zul.image.preload=”true”/>
 +
  <caption image="xxx.png" label="caption">
 +
  <image src="xxx.png"/>
 +
</window>
 +
</source>
 +
 +
As you can see, the ''custom-attributes'' will be checked recursively.
 +
  
 
= Example =
 
= Example =
Line 30: Line 60:
 
  </zk>
 
  </zk>
 
</source>
 
</source>
 +
 +
=Supported Events=
 +
 +
{| border="1" | width="100%"
 +
! <center>Name</center>
 +
! <center>Event Type</center>
 +
 +
|-
 +
| None
 +
| None
 +
 +
|}
 +
 +
*Inherited Supported Events: [[ZK_Component_Reference/Base_Components/LabelImageElement#Supported_Events | LabelImageElement]]
 +
  
 
=Supported Children=
 
=Supported Children=
Line 35: Line 80:
 
  *ALL
 
  *ALL
  
=Use cases=
+
=Use Cases=
  
 
{| border='1px' | width="100%"
 
{| border='1px' | width="100%"
 
! Version !! Description !! Example Location
 
! Version !! Description !! Example Location
 
|-
 
|-
| 5.0+
+
| 5.0
 
| How to use the title and caption inside a [[ZK Component Reference/Containers/Window|Window]]
 
| How to use the title and caption inside a [[ZK Component Reference/Containers/Window|Window]]
| http://docs.zkoss.org/wiki/Layout_and_Windows#Titles_and_Captions
+
| [[ZK_Component_Reference/Containers/Window#Title_and_Caption|Title and Caption]]
 
|}
 
|}
  
 
=Version History=
 
=Version History=
 
+
{{LastUpdated}}
 
 
  
 
{| border='1px' | width="100%"
 
{| border='1px' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-
| 5.0.1
+
| &nbsp;
| 04/20/2010
+
| &nbsp;
| Initialization
+
| &nbsp;
 
|}
 
|}
  
 
{{ZKComponentReferencePageFooter}}
 
{{ZKComponentReferencePageFooter}}

Revision as of 02:26, 2 November 2011

Caption

Employement/Purpose

A header for a Groupbox. It may contain either a text label, using LabelElement.setLabel(String), or child elements for a more complex caption.

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,

<caption image="xxx.png" label="caption">
  <custom-attributes org.zkoss.zul.image.preload=”true”/>
</caption>

Or specify it just below the root component.

For example,

<window>
  <custom-attributes org.zkoss.zul.image.preload=”true”/>
  <caption image="xxx.png" label="caption">
  <image src="xxx.png"/>
</window>

As you can see, the custom-attributes will be checked recursively.


Example

ZKComRef Caption Example.png


 <zk>
     <window border="normal" width="350px">
          <caption label="This is a caption"/>
             <groupbox width="300px">
                  <caption label="fruits"/>
                  <radiogroup onCheck="fruit.value = self.selectedItem.label">
                     <radio label="Apple"/>
                  <radio label="Orange"/>
                  <radio label="Banana"/>  
                  </radiogroup>
             </groupbox>
     </window>
 </zk>

Supported Events

Name
Event Type
None None


Supported Children

*ALL

Use Cases

Version Description Example Location
5.0 How to use the title and caption inside a Window Title and Caption

Version History

Last Update : 2011/11/02


Version Date Content
     



Last Update : 2011/11/02

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