For Bug 49661

This commit is contained in:
Julia Radzhabova 2021-09-29 11:38:25 +03:00
parent 29a065c3bd
commit c505cefef7
5 changed files with 5 additions and 5 deletions

View file

@ -1622,7 +1622,7 @@ define([
}
}
if (isLabel || event.target.className.match('checkbox')) {
if (isLabel || event.target.className.match('checkbox') && event.target.localName!=='input') {
this.updateCellCheck(listView, record);
_.delay(function () {

View file

@ -612,7 +612,7 @@ define([
}
}
if (isLabel || event.target.className.match('checkbox')) {
if (isLabel || event.target.className.match('checkbox') && event.target.localName!=='input') {
this.updateFieldCheck(listView, record);
}
}

View file

@ -289,7 +289,7 @@ define([
}
}
if (isLabel || event.target.className.match('checkbox')) {
if (isLabel || event.target.className.match('checkbox') && event.target.localName!=='input') {
this.updateCellCheck(listView, record);
_.delay(function () {

View file

@ -195,7 +195,7 @@ define([
}
}
if (isLabel || event.target.className.match('checkbox')) {
if (isLabel || event.target.className.match('checkbox') && event.target.localName!=='input') {
this.updateCellCheck(listView, record);
_.delay(function () {

View file

@ -150,7 +150,7 @@ define([
}
}
if (isLabel || event.target.className.match('checkbox')) {
if (isLabel || event.target.className.match('checkbox') && event.target.localName!=='input') {
this.updateCellCheck(listView, record);
_.delay(function () {