Javascript Sencha文本区的拼写检查

Javascript Sencha文本区的拼写检查,javascript,html,web-services,sencha-touch-2,spell-checking,Javascript,Html,Web Services,Sencha Touch 2,Spell Checking,我想在sencha应用程序中对textarea字段进行拼写检查 textarea字段如下所示: { xtype:'textareafield', id:'txt', height:220, autoCorrect:true, }, 我试着用 autoCorrect:true 这没有

我想在sencha应用程序中对textarea字段进行拼写检查

textarea字段如下所示:

            {
                xtype:'textareafield',
                id:'txt',
                height:220,                
                autoCorrect:true,


            },
我试着用

autoCorrect:true 
这没有帮助。能

  spellcheck="false" 

可以使用html属性吗?是否有任何已部署的Web服务可用,以便我只需连接并获取拼错的单词?非常感谢您的帮助。

现代浏览器支持拼写检查属性,例如,您可以使用可编辑的p标记:

<p contenteditable="true" spellcheck="true">This is a paragraphh. It is editable. Try to change the text.</p>

客户端拼写检查Javascript:


感谢您的回复。但是拼写检查在桌面浏览器上有效,而在移动设备上不起作用。请看我的最新问题
myTextArea.setElementAttribute("spellcheck", true);