Below is my code for jqGrid, i\'d like to select row or highlight the current row, when i check a particular checkbox inside jqgrid row. right now onSelec
check
onSelec
One simple way to do that:
jQuery(".jqgrow td input").each(function () { jQuery(this).click(function () { $("#grid").jqGrid('setSelection', $(this).parents('tr').attr('id')); }); });