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?
Hi Prabhakar Kumar,
Thank you for posting on our forums.
You should be able to get the GridRecord object in the GridRecordCollection by indexing through the collection. Here are some examples:ServerGridRecord record = WebDataGrid1.Rows[0];
Clientvar grid = $find("WebDataGrid1");var row = grid.get_rows().get_row(0)Here are some helpful help docs:GridRowCollection class Members CSOMGridRecordCollection class Members APIPlease let me know if you have additional questions regarding this matter.