是否可以删除或隐藏 Sencha 中消息框的确定按钮?如果是,我该怎么做?如果不是,原因是什么?在 Sencha 论坛中,我读到了这篇文章:How to hide or remove "OK" button of a Dialog,但想了解更多详细信息。
user1391869
问问题
1791 次
2 回答
1
我试过这种方式,它对我有用。可能它也适合你。我保持
hidden: true
在按钮标签中。
Ext.Msg.show({
title: 'Rate it',
buttons: [{
hidden: true,}]
});
或者您可以尝试这种方式:
Ext.Msg.show({
title: 'Title',
message: 'Some text goes here...',
itemId : 'showMsg',
buttons : []
});
上面提到的两种方式都可以根据需要隐藏按钮。当我上网时,当我点击屏幕并点击消息框以隐藏消息框时,我得到了这两个链接隐藏消息框。思想可能对你有帮助。
于 2013-08-13T04:06:43.850 回答
0
只是..如果没有确定按钮,您将如何关闭消息框?:)
使用模态面板怎么样:
Ext.define('Myapp.ModalPanel', {
extend: 'Ext.Panel',
xtype: 'modal-panel',
config: {
height: '50%',
width: '50%',
centered: true,
modal: true,
hideOnMaskTap: true
}
});
然后:
Ext.Viewport.add({
xtype: 'modal-panel',
items: [
{html: 'message'}
]
});
于 2013-07-26T12:15:18.780 回答