Ext.msg.alert 仅渲染第一行
我正在为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该函数有 3 个参数:
尝试使用“较长”文本设置第二个参数。应如下所示: http://dev.sencha.com/deploy /touch/docs/?class=Ext.MessageBox
The function has 3 parameters:
Try to set the second parameter with your "longer" text. Should look like this: http://dev.sencha.com/deploy/touch/docs/?class=Ext.MessageBox