Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
尽管要求很简单,但我觉得这很浪费我的时间,我正在尝试向 gwt gxt 组合框添加一个折叠事件,我使用的是 2.1 gwt 版本。任何小片段都会有所帮助。我拥有的库版本不支持 addCollapsehandler 事件,我尝试过使用 addHandler,我不知道如何继续。
谢谢。
这将是这样做的正常方法:
Listener<FieldEvent> collapseListener = new Listener<FieldEvent>() { @Override void handleEvent(FieldEvent fe) { // collapse handler here } } comboBox.addListener(Events.Collapse, collapseListener);