0
我們希望在sencha touch textareafield中實現自動更正/拼寫檢查功能。自動更正/拼寫檢查屬性在Safari瀏覽器中工作,但它不適用於iOS UIWebview。請幫我解決這個問題。在Sencha Touch中實現自動更正/拼寫檢查功能
感謝 Saranya
我們希望在sencha touch textareafield中實現自動更正/拼寫檢查功能。自動更正/拼寫檢查屬性在Safari瀏覽器中工作,但它不適用於iOS UIWebview。請幫我解決這個問題。在Sencha Touch中實現自動更正/拼寫檢查功能
感謝 Saranya
對於它的價值(我知道這是舊的文章),我是能夠得到的「拼寫檢查」屬性設置,但無法得到它在本地的PhoneGap工作應用:
{
xtype: 'textareafield',
placeHolder: 'What\'s on your mind?',
autoComplete: true,
autoCorrect: true,
listeners: {
painted: function(){
this.element.query('textarea')[0].setAttribute('spellcheck','true');
}
}
}