sencha touch提示问题
我尝试按以下方式创建提示对话框:
Ext.Msg.prompt('Add item',
'Add an item to this list:',
function(btn, text){
if(btn == 'ok'){
//do stuff...
}
},
null, false, 'foo', null);
不幸的是,这给了我一个空的提示框(无法输入文本,并且默认值'foo'
不会出现在文本字段中)。
我做错了什么? (在 Chromium 和 Android 2.1 手机上测试)。
干杯
I try to create a prompt dialog in the following manner:
Ext.Msg.prompt('Add item',
'Add an item to this list:',
function(btn, text){
if(btn == 'ok'){
//do stuff...
}
},
null, false, 'foo', null);
Unfortunately this gives me an empty prompt box (no possibility of entering text, and the default value 'foo'
does not appear in the text field).
What am I doing wrong? (tested on chromium and an android 2.1 phone).
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能是 Sencha bug
尝试在其中设置 maxlength 属性,而不是将promptConfig 设置为 null
示例:
适用于 Chrome 15
Probably Sencha bug
Instead of promptConfig set to null, try to set maxlength property in it
Example:
Works in Chrome 15