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.
在我的应用程序中,我有一个对话框,它不是由它自己的类创建的,而是作为小部件添加到页面中的。我需要给这个框中的按钮添加一个监听器,添加到对话框中是这样的: dialog.setButtons(Dialog.OKCANCEL); 或者如何处理按钮 cklick?
dialog.setButtons(Dialog.OKCANCEL);
UPD:我使用 GXT 2.2。
我找到了解决我的问题的方法。要处理“确定”按钮单击,我需要执行以下操作:
addDialog.getButtonById(Dialog.OK).addSelectionListener(new SelectionListener<ButtonEvent>() { @Override public void componentSelected(ButtonEvent ce) { //todo } });