我使用GXT创建了一个Dialog,但我不知道如何删除OK按钮。
我创建对话框的代码:
Dialog dialog = new Dialog();
dialog.setHeadingText("My group invites");
dialog.setPixelSize(100, 100);
dialog.setHideOnButtonClick(true);
dialog.addButton(new TextButton("TEST", new SelectHandler(){
@Override
public void onSelect(SelectEvent event) {
// TODO Auto-generated method stub
}
}));
结果:
有人知道如何摆脱OK按钮吗?
我正在使用Sencha GXT 3.1.0 beta
答案 0 :(得分:2)
我认为您可以使用Dialog类中的setPredefinedButtons
方法。
答案 1 :(得分:0)
在添加任何按钮之前,只需执行以下操作:
dialog.getButtonBar().clear();
这应该有效。