Kendo Grid scroll to selected row

后端 未结 5 1691
星月不相逢
星月不相逢 2020-12-31 15:19

I want to be able to call a function that scrolls the Kendo grid to the selected row. I´ve already tried some methods but none of them worked,

for instance

5条回答
  •  一生所求
    2020-12-31 16:05

    I found a function for this, in Kendo mobile MVVM

    parent.set('onShow', function (e) {
       e.view.scroller.reset();
    }
    

    or

    app.xxx = kendo.observable({
       onShow: function() { e.view.scroller.reset(); }
    });
    

提交回复
热议问题