Skip to content
Snippets Groups Projects
Commit 67409d4d authored by juanf's avatar juanf
Browse files

SSDM-3632 : Make cell of checkbox not clickable, bugfix

SVN: 36655
parent 7fd913b1
No related branches found
No related tags found
No related merge requests found
...@@ -582,6 +582,17 @@ $.extend(Grid.prototype, { ...@@ -582,6 +582,17 @@ $.extend(Grid.prototype, {
var $dropdownTD = $(optionsDropdowns[i]).parent(); var $dropdownTD = $(optionsDropdowns[i]).parent();
$dropdownTD.css({ "overflow" : "visible" }); $dropdownTD.css({ "overflow" : "visible" });
} }
if(thisGrid.isMultiselectable) {
var allCheckboxes = thisGrid.panel.find(".multi-selectable-checkbox");
for(var cIdx = 0; cIdx < allCheckboxes.length; cIdx++) {
var $parent = $($(allCheckboxes[cIdx]).parent());
$parent.click(function(e) {
e.stopPropagation();
});
$parent.css("cursor", "initial");
}
}
}, 1); }, 1);
}); });
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment