@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
|
@@ -4478,6 +4478,10 @@ class EsTableComponent {
|
|
|
4478
4478
|
return;
|
|
4479
4479
|
// ALT + Click sempre istantaneo e sempre solo singola selezione (NON control, dato che serve per mantenere i link....)
|
|
4480
4480
|
if ($event.altKey && this.RangeSelection) {
|
|
4481
|
+
//Skippo il range selection su cose con l'editor aperto dato che il focus lo va a prendere il click
|
|
4482
|
+
if ((this.DynamicRowColumnsDefinition.length > 0 && rowItem.edits[item._hash]._editing) ||
|
|
4483
|
+
rowItem._editing)
|
|
4484
|
+
return;
|
|
4481
4485
|
this.selection_H.singleCellSelection($event, item._ordinal, rowIndex);
|
|
4482
4486
|
return;
|
|
4483
4487
|
}
|