How to get the Jquery Grid entire row values on click..

Posted by kumar on Stack Overflow See other posts from Stack Overflow or by kumar
Published on 2010-06-11T03:04:50Z Indexed on 2010/06/11 3:43 UTC
Read the original article Hit count: 178

Filed under:

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

© Stack Overflow or respective owner

Related posts about jQuery