HI Everybody ,

I have a ext grid panel with row selection model such as

<SelectionModel>
        <ext:RowSelectionModel ID="rowSelection1" runat="server" SingleSelect ="true">
              
        </ext:RowSelectionModel>
         
        </SelectionModel>
I want know is it possible to loop through the rows in gridpanel based on a button click ...?

Example:

1.Initially Row 1 is selected in ext grid panel
2.When user clicks on a button , automatically the selection should move to next ( i.e ) 2
3.The same should occur till the selection reached the last row of grid panel (i.e) 3,4...9

The button is placed on a different panel, so that the user doesn't need to click exactly on the grid panel row to make it selected

By clicking on the button itself, the user can roll through all rows inside grid panel

Thanks.