@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.
@@ -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
  }