Checkbox"

From Documentation
Line 37: Line 37:
 
! <center>Event Type</center>
 
! <center>Event Type</center>
 
|-
 
|-
| None
+
| <center><tt>onRightClick</tt></center>
| None
+
| [#MouseEvent org.zkoss.zk.ui.event.MouseEvent]
 +
 
 +
 
 +
<tt>'''Description:''' Denotes user has right-clicked the component.</tt>
 +
 
 +
|-
 +
| <center><tt>onDoubleClick</tt></center>
 +
| [#MouseEvent org.zkoss.zk.ui.event.MouseEvent]
 +
 
 +
 
 +
<tt>'''Description:''' Denotes user has double-clicked the component.</tt>
 +
 
 +
|-
 +
| <center><tt>onFocus</tt></center>
 +
| [#Event org.zkoss.zk.ui.event.Event]
 +
 
 +
 
 +
<tt>'''Description:''' Denotes when a component gets the focus.</tt>
 +
 
 +
|-
 +
| <center><tt>onBlur</tt></center>
 +
| [#Event org.zkoss.zk.ui.even.Event]
 +
 
 +
 
 +
<tt>Description: Denotes when a component loses the focus.</tt>
 +
 
 +
|-
 +
| <center>onCheck</center>
 +
| [#CheckEvent org.zkoss.zk.ui.event.CheckEvent]
 +
 
 +
<tt>Description: Denotes when a component loses the focus.</tt>
 
|}
 
|}
  

Revision as of 07:48, 12 May 2010

Checkbox

Employment/Purpose

A checkbox.

Example

ZKComRef Checkbox Example.png

<window title="Checkbox demo" border="normal" width="350px">
	<checkbox id="apple" label="Apple" onCheck="doChecked()" />
	<checkbox id="orange" label="Orange" onCheck="doChecked()" />
	<checkbox id="banana" label="Banana" onCheck="doChecked()" />
	<hbox>
		You have selected :
		<label id="fruit2" />
	</hbox>
	<zscript> void doChecked() { fruit2.value = (apple.isChecked() ?
		apple.label+' ' : &quot;&quot;) 
                     + (orange.isChecked() ? orange.label+' ' : &quot;&quot;) 
                     + (banana.isChecked() ? banana.label+' ' : &quot;&quot;);
             }
         </zscript>
 </window>

Supported events

Name
Event Type
onRightClick
[#MouseEvent org.zkoss.zk.ui.event.MouseEvent]


Description: Denotes user has right-clicked the component.

onDoubleClick
[#MouseEvent org.zkoss.zk.ui.event.MouseEvent]


Description: Denotes user has double-clicked the component.

onFocus
[#Event org.zkoss.zk.ui.event.Event]


Description: Denotes when a component gets the focus.

onBlur
[#Event org.zkoss.zk.ui.even.Event]


Description: Denotes when a component loses the focus.

onCheck
[#CheckEvent org.zkoss.zk.ui.event.CheckEvent]

Description: Denotes when a component loses the focus.

Supported Children

*ALL

Use cases

Version Description Example Location
5.0+    

Version History

Version Date Content
5.x.x x/x/20xx Initialization



Last Update : 2010/05/12

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