在 Sencha touch 中调整 Ext.Msg 的宽度

发布于 2024-12-09 18:58:24 字数 669 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尛丟丟 2024-12-16 18:58:24

显示后调用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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文