HtmlBasedComponent"

From Documentation
(14 intermediate revisions by 5 users not shown)
Line 3: Line 3:
 
= Html Based Component =
 
= Html Based Component =
  
*Demonstration: Most of ZK Components are Html Based Component.
+
*Demonstration: N/A
 
*Java API: <javadoc>org.zkoss.zk.ui.HtmlBasedComponent</javadoc>
 
*Java API: <javadoc>org.zkoss.zk.ui.HtmlBasedComponent</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zk.Widget</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zk.Widget</javadoc>
  
 
= Employment/Purpose =
 
= Employment/Purpose =
 +
A skeletal implementation for HTML based components. It simplifies to implement methods common to HTML based components.
  
 +
=Example=
  
 +
N/A
  
= Example =
+
=Supported Events=
  
 +
{| border="1" | width="100%"
 +
! <center>Name</center>
 +
! <center>Event Type</center>
 +
|-
 +
| <center><tt>onDrop</tt></center>
 +
| '''Event:''' <javadoc>org.zkoss.zk.ui.event.DropEvent</javadoc>
 +
Denotes user has dropped the dragged target to the component.
 +
|-
 +
| <center><tt>onClick</tt></center>
 +
| '''Event:''' <javadoc> org.zkoss.zk.ui.event.MouseEvent</javadoc>
  
 +
Denotes user has clicked the component.
 +
|-
 +
| <center><tt>onDoubleClick</tt></center>
 +
| '''Event:''' <javadoc> org.zkoss.zk.ui.event.MouseEvent</javadoc>
 +
Denotes user has double-clicked the component.
 +
|-
 +
| <center><tt>onRightClick</tt></center>
 +
| '''Event:''' <javadoc> org.zkoss.zk.ui.event.MouseEvent</javadoc>
 +
Denotes user has right-clicked the component.
 +
|-
 +
| <center><tt>onMouseOver</tt></center>
 +
| '''Event:''' <javadoc> org.zkoss.zk.ui.event.MoveEvent</javadoc>
 +
Denotes user has hovered over the component.
 +
|-
 +
| <center><tt>onMouseOut</tt></center>
 +
| '''Event:''' <javadoc> org.zkoss.zk.ui.event.MoveEvent</javadoc>
 +
Denotes user has moved out the component.
 +
|-
 +
| <center><tt>onOK </tt></center>
 +
| '''Event:''' <javadoc>org.zkoss.zk.ui.event.KeyEvent</javadoc>
  
 +
Denotes user has pressed the ENTER key.
  
 +
|-
 +
| <center><tt>onCancel </tt></center>
 +
| '''Event:''' <javadoc>org.zkoss.zk.ui.event.KeyEvent</javadoc>
  
=Supported events=
+
Denotes user has pressed the ESC key.
  
{| border="1" | width="100%"
 
! <center>Name</center>
 
! <center>Event Type</center>
 
 
|-
 
|-
| Text
+
| <center><tt>onCtrlKey</tt></center>
| Text
+
| '''Event:''' <javadoc>org.zkoss.zk.ui.event.KeyEvent</javadoc>
 +
 
 +
Denotes user has pressed a special key, such as PgUp, Home and a key combined with the Ctrl or Alt key. Refer to the ctrlKeys Property section below for details.
 
|}
 
|}
  
Line 36: Line 72:
 
! Version !! Description !! Example Location
 
! Version !! Description !! Example Location
 
|-
 
|-
| 5.0+
+
| &nbsp;
| Text
+
| &nbsp;
| Text
+
| &nbsp;
 
|}
 
|}
  
Line 46: Line 82:
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-
| 5.x.x
+
| 5.0.3
| x/x/20xx
+
| June 2010
| Initialization
+
| The onMouseOver and onMouseOut events are supported.
 
|}
 
|}
  
 
{{ZKComponentReferencePageFooter}}
 
{{ZKComponentReferencePageFooter}}

Revision as of 10:04, 11 November 2010


HtmlBasedComponent

Html Based Component

Employment/Purpose

A skeletal implementation for HTML based components. It simplifies to implement methods common to HTML based components.

Example

N/A

Supported Events

Name
Event Type
onDrop
Event: DropEvent

Denotes user has dropped the dragged target to the component.

onClick
Event: MouseEvent

Denotes user has clicked the component.

onDoubleClick
Event: MouseEvent

Denotes user has double-clicked the component.

onRightClick
Event: MouseEvent

Denotes user has right-clicked the component.

onMouseOver
Event: MoveEvent

Denotes user has hovered over the component.

onMouseOut
Event: MoveEvent

Denotes user has moved out the component.

onOK
Event: KeyEvent

Denotes user has pressed the ENTER key.

onCancel
Event: KeyEvent

Denotes user has pressed the ESC key.

onCtrlKey
Event: KeyEvent

Denotes user has pressed a special key, such as PgUp, Home and a key combined with the Ctrl or Alt key. Refer to the ctrlKeys Property section below for details.

Supported Children

*ALL

Use cases

Version Description Example Location
     

Version History

Version Date Content
5.0.3 June 2010 The onMouseOver and onMouseOut events are supported.



Last Update : 2010/11/11

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