如何在Ext.Msg中更改按钮顺序?

时间:2013-07-25 14:45:38

标签: javascript extjs extjs4

我有一个MessageBox要在我的应用程序中显示,并且指定'YES'按钮必须在右侧。我怎样才能更改 YESNOCANCEL 订单? (在一个 CANCELNOYES 中可能会?)

这是我的实际代码:

Ext.Msg.show({
             title: 'myTitle',
             msg: 'myMessage',
             buttonText : {
                 cancel : 'Cancel',
                 yes : 'Yes'
             },
             fn: function(btn) {
                 if(btn == 'yes') {
                     dodat(); 
                 }
             }
        });   

2 个答案:

答案 0 :(得分:6)

Ext.Msg是一个单例,因此与普通组件相比,它具有奇怪的生命周期。这意味着下面的代码可能应该在Ext.onReady或App创建的早期执行。这将更改应用程序中所有警报的按钮顺序,因为Ext.Msg是单例:

var msgButtonBar = Ext.Msg.down("toolbar");
var okButton = msgButtonBar.items.items[0];
var yesButton = msgButtonBar.items.items[1];
var noButton = msgButtonBar.items.items[2];
var cancelButton = msgButtonBar.items.items[3];
msgButtonBar.removeAll(false);
msgButtonBar.add([cancelButton, noButton, yesButton, okButton]);

它基本上只是重新排序Singleton中的按钮。

答案 1 :(得分:0)

我建议不要弄乱Ext.MessageBox单身,而只是使用您选择的Ext.Window配置创建buttons的自定义扩展程序。

实际上只是一些小配置使窗口看起来像消息框。类似的东西:

var msgBox = new Ext.Window({
    width: 300,
    height: 150,
    buttons: [{ text: 'Cancel', handler...}, { text: 'Yes', handler...}],
    title: 'Alert',
    modal: true|false,
    html: 'Are you sure?'
});
msgBox.show();

如果样式不完美,您甚至可以将“ext-mb-dialog”或类别添加到此窗口配置中。