I have a custom checkbox column on my JQGrid, each time the user clicks on the checkbox I would like to display all the row information in a message box.
My jsfiddle:
I have tried the following, but does nothing:
function getCurrentBinRow() {
var grid = $('#grid'),
selRowId = grid.jqGrid('getGridParam', 'selrow'),
celValue = grid.jqGrid('getCell', selRowId, 'Inv No');
}
Thanks