Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 ?

like image 998
Saad Avatar asked Aug 09 '11 11:08

Saad


1 Answers

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.

like image 98
Oleg Avatar answered Sep 23 '22 08:09

Oleg