Added possibility to avoid firing of the row click with a data-row-selector-exclude="true" param
@@ -23,6 +23,9 @@
Plugin.prototype.init = function () {
var _this = this;
$(_this.element).closest("tr").click(function(e){
+ if ($(e.target).data("row-selector-exclude")){
+ return;
+ }
if (!$(e.target).is("a")){
if ($.trim($(_this.element).attr("href")) != ""){
location.href = $(_this.element).attr("href");