how to retreive the row value on click

Posted by kumar on Stack Overflow See other posts from Stack Overflow or by kumar
Published on 2010-05-03T18:24:10Z Indexed on 2010/05/03 18:28 UTC
Read the original article Hit count: 259

Filed under:
 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 I am getting null value for the row? is this right what I am doing here? Thanks

When I am doing somethign like this..

var value;
$("#Grid").click(function(e) {
                    var row = jQuery(e.target).parent();
                    value= row.attr("id");
});
    var RowClick = function() {
    ("#Grid").click(
            $("#showgrid").load('/Inventory/Products/List/' + value));
    };

on alert I am getting the row value perfectly but in my action result method Its showing me null value?

Public Actionresult List(string value) { return View(); }

can anybody help me out.. thanks

© Stack Overflow or respective owner

Related posts about jQuery