@esfaenza/es-table 11.2.83-beta3 → 11.2.83-beta4
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 +4 -0
- 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/esfaenza-es-table.metadata.json +1 -1
- package/esm2015/lib/components/es-table/es_table.component.js +5 -1
- package/fesm2015/esfaenza-es-table.js +4 -0
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/package.json +1 -1
|
@@ -5006,6 +5006,10 @@
|
|
|
5006
5006
|
return;
|
|
5007
5007
|
// ALT + Click sempre istantaneo e sempre solo singola selezione (NON control, dato che serve per mantenere i link....)
|
|
5008
5008
|
if ($event.altKey && this.RangeSelection) {
|
|
5009
|
+
//Skippo il range selection su cose con l'editor aperto dato che il focus lo va a prendere il click
|
|
5010
|
+
if ((this.DynamicRowColumnsDefinition.length > 0 && rowItem.edits[item._hash]._editing) ||
|
|
5011
|
+
rowItem._editing)
|
|
5012
|
+
return;
|
|
5009
5013
|
this.selection_H.singleCellSelection($event, item._ordinal, rowIndex);
|
|
5010
5014
|
return;
|
|
5011
5015
|
}
|