在Sencha Touch中实现自动更正/拼写检查功能

时间:2014-02-26 06:14:42

标签: ios sencha-touch-2 sencha-touch-2.1

我们希望在sencha touch textareafield中实现自动更正/拼写检查功能。自动更正/拼写检查属性在Safari浏览器中可用,但它在iOS UIWebview中不起作用。请帮助我实现这一目标。

由于 Saranya

1 个答案:

答案 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');
                                }
                            }
                        }