[ExtJS] textarea 不自動聚焦問題

在爲tpl放置input類控件時,即使使用了 textareafield控件.focus(); 但是,textarea 控件還是沒有顯示聚焦的光標.

主要原因

被放入到tpl中的input類控件,focus方法裏 在  canFocus方法中,有了判斷,返回爲false或undefined造成。

解決方法

在向tpl裏的dom 插入 extjs控件的el之前,先設置textarea的dom的autofocus爲true,放入後,在用dom元素聚焦

textField.getFocusEl().dom.autofocus=true;
tplDOM元素.append(textField.el);
textField.getFocusEl().dom.focus();

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章