Hello Ashutosh,
You can use the method getselectedrowindexes to get the indexes of all selected rows. You can get an array of all loaded rows in the grid with getboundrows. Finally, use the indexes returned from the former method to get only the selected rows from the array returned by the latter, e.g.:
var rowindexes = $('#jqxGrid').jqxGrid('getselectedrowindexes');
var rows = $('#jqxGrid').jqxGrid('getboundrows');
var firstSelectedRow = rows[rowindexes[0]];
Best Regards,
Dimitar
jQWidgets team
http://www.jqwidgets.com/