Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
80
Getting row from RowIndex
posted

If my currently selected row index is '6' and we want to locate the next row above or below this row with row index '7' and '5'. How can I achieve this?

In Ultrawebgrid it is achieved through  

var instanceGrid = igtbl_getGridById("ctl00_ContentPlaceHolder1_UltraWebGrid2");

var rowUp = instanceGrid.Rows.getRow(rindex - 1);)

How it is  used in WebDataGrid?