Image:stop.png This documentation is for an older version of ZK. For the latest documentation please click here .

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>