Hi,
Is there a way to unhighlight and uncheck a row after it has been saved/updated?
Thanks – Greg
1 Answers
There is no option to remove it via code. However, You can modify lib/inc/jqgrid_dist.php and search+remove these lines:
r = JSON.parse(response.responseText);
jQuery( document ).ajaxComplete(function() {
jQuery('#{$grid_id}').setSelection(r.id);
jQuery( document ).unbind('ajaxComplete');
});
Your Answer