在 Sencha touch 中调整 Ext.Msg 的宽度
我正在尝试使用 Sencha touch 开发一个移动应用程序。我需要显示一个带有 4 个按钮的自定义消息框。但是我无法更改消息框的内容,因为消息中只有 3 个按钮可见。请任何人帮助我调整消息框的宽度。以下是我使用的代码
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'
}]
});
提前致谢......
I am trying to develop a mobile app using Sencha touch .I need to show a custom message box with 4 buttons.But i cannot change the with of message box,because of that only 3 buttons are visible in the message.please anyone help me to adjust the width of Message Box.Following is the code i am using
Ext.Msg.show({
title : '',
msg : '',
width : 300,
height : 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'
}]
});
Thanks in advance .....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显示后调用
doComponentLayout()
。即Ext.Msg.show(confObj).doComponentLayout();
更新
http://jsfiddle.net/p5K4q/25/
call
doComponentLayout()
after showing. i.e.Ext.Msg.show(confObj).doComponentLayout();
Update
http://jsfiddle.net/p5K4q/25/