我在 zk 中有一个文本框。如果我按下选项卡调用 onChanged 事件。按下回车键时调用 onChange 事件需要做什么?目前,当我按 Enter 时,根本没有发生任何事情。
<textbox id="inputWord" width="200px" apply="com.wb.controlers.WBControler" />
WBControler.java(扩展 GenericForwardComposer)
public void onChange$inputWord(Event event) throws Exception {
Component c = event.getTarget();
if (c instanceof Textbox) {
wordTextbox = (Textbox)c;
}
if (wordTextbox != null) {
// do something
}
}
提前致谢。