0

GridPanel の最後の Element までスクロールしようとしていますが、最後の Element はすでにフォーカスされています

_this.testpanel.getSelectionModel().selectLastRow( );

私は多くの方法を試しましたが、どれもうまくいきませんでした... GridPanel は経由で保存されます

_this.testpanel =new Ext.grid.GridPanel(...

私が試したロード機能で

_this.testpanel.getRow(_this.receiver_list.getStore().getCount()-1).scrollIntoView(_this.receiver_list.getView(),false);

こいつは何もしない。

_this.receiver_list.getView().getRow(_this.receiver_list.getStore().getCount()-1).scrollIntoView("receiver_list");

これはフォームをスクロールし、GrindPanel は内部にあります。ただし、GridPanel 自体にはありません。

4

2 に答える 2

0

次の関数を見てください

http://docs.sencha.com/ext-js/4-0/#!/api/Ext.grid.Panel-method-setScrollTop

于 2012-05-07T12:32:50.763 に答える
0

scrollTo() Elements メソッドを使用します。

于 2012-05-07T12:51:31.753 に答える