Search code examples
jqueryasp.net-mvcjqgridjqgrid-asp.net

How to get a jqGrid selected row cells value


Does anyone know how to get the cells value of the selected row of JQGrid ? i m using mvc with JQGrid, i want to access the value of the hidden column of the selected row ?


Solution

  • First you can get the rowid of the selected row with respect of getGridParam method and 'selrow' as the parameter and then you can use getCell to get the cell value from the corresponding column:

    var myGrid = $('#list'),
        selRowId = myGrid.jqGrid ('getGridParam', 'selrow'),
        celValue = myGrid.jqGrid ('getCell', selRowId, 'columnName');
    

    The 'columnName' should be the same name which you use in the 'name' property of the colModel. If you need values from many column of the selected row you can use getRowData instead of getCell.