Skip to content

Commit

Permalink
Fix prevent click disabled check box in multiselect mode in IE browse…
Browse files Browse the repository at this point in the history
…rs. See #777
  • Loading branch information
tonytomov committed Apr 25, 2016
1 parent f90160b commit 1d07627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/grid.base.js
Expand Up @@ -3731,7 +3731,7 @@ $.fn.jqGrid = function( pin ) {
if($(ptr).length === 0 || ptr[0].className.indexOf( disabled ) > -1 || ($(td,ts).closest("table.ui-jqgrid-btable").attr('id') || '').replace("_frozen","") !== ts.id ) {
return this;
}
var scb = $(td).hasClass("cbox"),
var scb = $(td).filter(":enabled").hasClass("cbox"),
cSel = $(ts).triggerHandler("jqGridBeforeSelectRow", [ptr[0].id, e]);
cSel = (cSel === false || cSel === 'stop') ? false : true;
if ($.isFunction(ts.p.beforeSelectRow)) {
Expand Down

0 comments on commit 1d07627

Please sign in to comment.