org.zkoss.zk.ui.event

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Ajax » zk » org.zkoss.zk.ui.event 
org.zkoss.zk.ui.event
Events The org.zkoss.zk.ui and org.zkoss.zk.ui.event packages are the only packages that component and application developers need to know.

For application developers they usually need only the org.zkoss.zk.ui package.

Java Source File NameTypeComment
BookmarkEvent.javaClass The onBookmarkChanged event used to notify that user pressed BACK, FORWARD or others that causes the bookmark changed (but still in the same desktop).
CheckEvent.javaClass Represents an event cause by user's check a state at the client.
ClientInfoEvent.javaClass The onClientInfo event is used to notify the client's information, such as time zone and screen resolutions.
CreateEvent.javaClass Used to notify a window that all its children are created and initialized.
Deferrable.javaInterface Used to decorate EventListener to denote whether the event for the listener can be deferred.
DropEvent.javaClass Represents an event cause by user's dragging and dropping a component.
ErrorEvent.javaClass Represents an event cause by user's entering a wrong data or clearing the last wrong data.
Event.javaClass An event sent to the event handler of a component.
EventListener.javaInterface An listener that will be notified when an event occurs, if it is registered to org.zkoss.zk.ui.Component.addEventListener .

If an event listener also implements Deferrable and Deferrable.isDeferrable returns true, the event for the listener will NOT be sent to the server immediately (when it is fired at the client).

Events.javaClass Utilities to handle events.
EventThreadCleanup.javaInterface Used to clean the event processing thread.
EventThreadInit.javaInterface Used to initialize the event processing thread.
EventThreadResume.javaInterface Used to listen after the event processing thread is resumed.
EventThreadSuspend.javaInterface Used to listen when the event processing thread is going to suspend.
Express.javaInterface Decorates an event listener ( EventListener ) shall be invoked before other event listeners, including the onXxx member declared in the ZUML pages.
ForwardEvent.javaClass Represents the event forwarded by the forward condition.
GenericEventListener.javaClass

An abstract event listener that you can extend and write intuitive onXxx event handler methods; this class dispatch event to the implemented onXxx event handler methods automatically.

InputEvent.javaClass Represents an event cause by user's input something at the client.
KeyEvent.javaClass Represents a key pressed by the user.
MouseEvent.javaClass Represents an event cause by mouse activitly.
MoveEvent.javaClass Represents an event caused by a component being moved.
OpenEvent.javaClass Represents an event cause by user's openning or closing something at the client.

Note: it is a bit confusing but Events.ON_CLOSE is sent when user clicks a close button.

ScrollEvent.javaClass Represents an event caused by that user is scrolling or has scrolled at the client.
SelectEvent.javaClass Represents an event cause by user's the list selection is changed at the client.
SelectionEvent.javaClass Represents an event cause by user's the active selection which is a highlighted block of text.
SizeEvent.javaClass Represents an event caused by a component being re-sized.
UploadEvent.javaClass Represents that user has uploaded one or several files from the client to the server.
ZIndexEvent.javaClass Represents an event caused by a component whose z-index is modified by the client.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.