How to get the Jquery Grid entire row values on click..
- by kumar
I need to Get the Entire Row values when I click on jquery grid row.. here is the code I am using for that
var RowClick = function(e) {
var resultArray = $("#Grid td:first:child").closest('tr').find('td').map(function() {
alert(resultArray);
});
};
For this RowClick I defined in Grid property server side for the jquery grid
grid.ClientSideEvents.RowSelect = "RowClick";
Can any one tell me on click on Row I need to get entire values or 4th and 5th columns values?
thanks