Book not found

From Documentation
⧼coll-notfound_msg⧽

Return to Documentation.


event - org.zkoss.zk.ui.event.Event or derived

The current event. Available for the event listener only.

<textbox onChanging="react(event.value)" />
<combobox onChanging="autoComplete()" />
<zscript>
 void react(String value) {
 ...
 }
 void autoComplete() {
   String value = event.getValue();
 ...
 }
</zscript>



Last Update : 2010/07/12

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