我有一个道场ConfirmDialog
如下:
this.myDialog = new ConfirmDialog({
title: "My Dialog",
content: "Do you want to continue?",
class: "confirmDialog",
closable: false
});
// change button labels
this.myDialog.set("buttonOk","Yes");
this.myDialog.set("buttonCancel","No");
// register events
this.myDialog.on("execute", function() {
self.continueSomething()
});
后来根据一些条件,我正在更新ConfirmDialog
动态如下:
this.myDialog.set("title", "New Title");
this.myDialog.set("content", "Its too late. Press ok to re-route.");
this.myDialog.set("buttonOk","Ok");
在这个阶段,我没有对任何的功能Cancel
按钮。 如何隐藏呢?
以下工作无:
this.myDialog.cancelButton.hide();
//or
this.myDialog.cancelButton.set("display", "none");
//or
this.myDialog.cancelButton.set("display", none);
我可以禁用它:
this.myDialog.cancelButton.set("disabled", true);
但是,这不完全正确。 我想隐藏的Cancel
彻底按钮。
我该怎么做?