Ext.msg.alert 仅渲染第一行

发布于 2024-11-28 04:45:18 字数 509 浏览 1 评论 0原文

我正在为 Android 设备开发一个应用程序,当我使用 Ext.msg.alert 时,如下所示:

Ext.msg.alert('Little fox jumped over something');

警报中仅显示文本“小狐狸跳了”,因为文本到达屏幕的右边框,并且不会自动放置其余部分在第二行。

我认为这是某种自动调整问题(?)。Ext.msg.alert 不会使文本适合其边框(?)。

我已经尝试过

Ext.msg.alert('Little fox jumped over something').doComponentLayout();

Ext.msg.alert('Little fox jumped over something').doLayout();

但那些没有用。

有没有人遇到过这个问题?有什么建议吗?

谢谢。

I'm developing an app for Android devices and when I use Ext.msg.alert as follows:

Ext.msg.alert('Little fox jumped over something');

Only the text "Little fox jumped" is shown in alert because text reaches the right border of the screen and it does not automatically put the rest on second line.

I think this is some kind of auto-fit problem(?).Ext.msg.alert does not make the text fit inside its borders(?).

I've tried

Ext.msg.alert('Little fox jumped over something').doComponentLayout();

and

Ext.msg.alert('Little fox jumped over something').doLayout();

But those made no use.

Had any of the folks ever come over this problem? Any suggestions?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

装迷糊 2024-12-05 04:45:18

该函数有 3 个参数:

Ext.Msg.alert('Title', 'The quick brown fox jumped over the lazy dog.', Ext.emptyFn);

尝试使用“较长”文本设置第二个参数。应如下所示: http://dev.sencha.com/deploy /touch/docs/?class=Ext.MessageBox

The function has 3 parameters:

Ext.Msg.alert('Title', 'The quick brown fox jumped over the lazy dog.', Ext.emptyFn);

Try to set the second parameter with your "longer" text. Should look like this: http://dev.sencha.com/deploy/touch/docs/?class=Ext.MessageBox

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