How to get a jqGrid cell value when in-line editing (getcell and getRowData returns the cell content and not the actuall value of the input element).
You can get it from the following way...!!
var rowId =$("#list").jqGrid('getGridParam','selrow'); var rowData = jQuery("#list").getRowData(rowId); var colData = rowData['UserId']; // perticuler Column name of jqgrid that you want to access