@esfaenza/es-table 11.2.83-beta6 → 11.2.83-beta7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/esfaenza-es-table.umd.js +2 -1
- package/bundles/esfaenza-es-table.umd.js.map +1 -1
- package/bundles/esfaenza-es-table.umd.min.js +1 -1
- package/bundles/esfaenza-es-table.umd.min.js.map +1 -1
- package/esm2015/lib/components/es-table/es_table.component.js +3 -2
- package/fesm2015/esfaenza-es-table.js +2 -1
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/package.json +1 -1
|
@@ -4998,8 +4998,9 @@
|
|
|
4998
4998
|
*/
|
|
4999
4999
|
EsTableComponent.prototype.dbClickEditOrSingleClickRowSelection = function ($event, rowItem, item, rowIndex) {
|
|
5000
5000
|
var _this = this;
|
|
5001
|
+
var _a;
|
|
5001
5002
|
// Tutti i click su una cella già in edit non devono effettuare la selezione della riga
|
|
5002
|
-
if ((this.DynamicRowColumnsDefinition.length > 0 && rowItem.edits[item._hash]._editing) ||
|
|
5003
|
+
if ((this.DynamicRowColumnsDefinition.length > 0 && rowItem.edits && ((_a = rowItem.edits[item._hash]) === null || _a === void 0 ? void 0 : _a._editing)) ||
|
|
5003
5004
|
rowItem._editing)
|
|
5004
5005
|
return;
|
|
5005
5006
|
// Se ho fatto click col control attaccato esco subito dato che deve solo permettere la navigazione dei link
|