1
constructor: function() {
this.adjustHeight = Ext.Function.createBuffered(function(textarea) {
var textAreaEl = textarea.getComponent().input;
if (textAreaEl) {
textAreaEl.dom.style.height = 'auto';
var iNewHeight = textAreaEl.dom.scrollHeight;
if (iNewHeight > 0) {
textAreaEl.dom.style.height = textAreaEl.dom.scrollHeight + "px";
}
}
},200,this);
this.callParent(arguments);
}
我想textarea
集中與完整內容visible
。但是,文本區與鍵盤隱藏
如果下面有足夠的元素,您可以嘗試使用list.getScrollable()。getScroller()。scrollTo(Element)。 – Dinkheller
我已經嘗試過,但它會產生跳躍效果@ProtoBassi –
如果(iNewHeight> 0)textAreaEl.dom.style.height = textAreaEl.dom.scrollHeight +「px」,您是否嘗試過焦點 – Dinkheller