我们希望在sencha touch textareafield中实现自动更正/拼写检查功能。自动更正/拼写检查属性在Safari浏览器中可用,但它在iOS UIWebview中不起作用。请帮助我实现这一目标。
由于 Saranya
答案 0 :(得分:0)
对于它的价值(我知道这是一篇旧帖子),我能够设置'spellcheck'属性,但无法让它在本机PhoneGap应用程序上运行:
{
xtype: 'textareafield',
placeHolder: 'What\'s on your mind?',
autoComplete: true,
autoCorrect: true,
listeners: {
painted: function(){
this.element.query('textarea')[0].setAttribute('spellcheck','true');
}
}
}