我有一個網格面板(裏面Ext.ux.grid.RowEditor面板),我想滾動到(我Ext.ux.grid.RowEditor沒有完全顯示在底部附近)下方,如何在Ext JS 3.4網格中滾動到底部?
這按保存按鈕我火災事件時
this.MyGrid.getView().on('scrollToBottom', function(){
var inputEl = this.MyGrid.el.dom;
inputEl.scrollTop = inputEl.scrollHeight;
}, this);
.....
然後:
this.MyGrid.getView().fireEvent('scrollToBottom',this);
任何想法,爲什麼它沒有一段代碼不工作滾動?謝謝!
我們可以使用addEvent方法定義我們自己的事件,然後根據我們的要求引發它。 – Sreek521 2014-10-22 09:10:15
'this.scrollToBottom(); .... scrollToBottom:function(){ var inputEl = this.characteristics.el.dom; inputEl.scrollTop = inputEl.scrollHeight; },'它進入內部函數,但滾動沒有發生 – user3505689 2014-10-22 09:34:30
@ user3505689是您的函數關聯的事件正在調用? – Sreek521 2014-10-22 09:41:48