how to retreive the row value on click
- by kumar
var RowClick = function() {
("#Grid").click(
var s = $("#Grid").jqGrid('getGridParam', 'selarrrow').toString();
alert(s);
$("#showgrid").load('/Inventory/Products/List/' + s));
};
on RowClick i am trying to get the value of that row to send throw URL..
to access this Row value in my Actionresult method.
but…