-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Normal
-
Affects Version/s: 5.0.9
-
Component/s: Components
-
None
-
None
check the document http://books.zkoss.org/wiki/ZK_Developer's_Reference/Performance_Tips/Specify_Stubonly_for_Client-only_Components
with this example in zksandbox
<window title="My First Window" border="normal" width="200px"> <div onChange='alert("event 1 "+event)' id="dd"> <textbox stubonly="true" onChange='alert(event.getClass().getName()+":"+event.getName())'/> <textbox stubonly="true" onChange='alert(event.getTarget())'/> </div> </window>
the event is still input sevent, and the target is still textbox