我正在尝试使用Sencha touch开发一个移动应用程序。我需要显示一个带有4个按钮的自定义消息框。但是我无法更改消息框的内容,因为消息中只能看到3个按钮。任何人都可以帮我调整Message Box的宽度。以下是我正在使用的代码
Ext.Msg.show({ 标题:'', 消息:'', 宽度:300, 身高:300,
buttons : [{
itemId : 'A',
text : 'A',
ui : 'action',
}, {
itemId : 'B',
text : 'B',
ui : 'action'
}, {
itemId : 'C',
text : 'C',
ui : 'action'
}, {
itemId : 'D',
text : 'D',
ui : 'action'
}, {
itemId : 'E',
text : 'E',
ui : 'action'
}, {
itemId : 'F',
text : 'F',
ui : 'action'
}]
});
提前致谢.....
答案 0 :(得分:0)
显示后致电doComponentLayout()
。即Ext.Msg.show(confObj).doComponentLayout();
<强>更新强>