GridPanel - Scroll to selection

  1. #1

    GridPanel - Scroll to selection

    Is there a way - on load, to set a selection on a GridPanel and then scroll to the selected row?
  2. #2

    RE: GridPanel - Scroll to selection

    Please try like this..

    This is some what tricky to set the scroll position. Hope there is better method from experts to solve this. But i tried like below code and its working for my grid to scroll to the selected row.
    Call the below in store Load().

    
    var pos = (selected row index * some value); // this you have to calculate based on the grid panel.
    
    GridPanel().getView().restoreScroll({ left: 0, top: pos });


    Hope this helps.

Similar Threads

  1. Replies: 3
    Last Post: Oct 05, 2012, 11:44 AM
  2. No Horizontal Scroll bar in GridPanel
    By fangmdu in forum 1.x Help
    Replies: 2
    Last Post: Jul 05, 2012, 9:53 PM
  3. GridPanel scroll can't use
    By qch2006qch in forum 1.x Help
    Replies: 0
    Last Post: Feb 10, 2012, 10:47 AM
  4. [CLOSED] gridpanel scroll bar
    By lonely7345 in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Apr 11, 2011, 4:48 PM
  5. GridPanel scroll issue in IE6
    By danielg in forum 1.x Legacy Premium Help
    Replies: 0
    Last Post: May 08, 2009, 11:18 AM

Posting Permissions