Hello,
I'm developing an app for Android devices and when I use Ext.msg.alert as follows:
Code:
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
Code:
Ext.msg.alert('Little fox jumped over something').doComponentLayout();
and
Code:
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.