UNPKG

handsontable

Version:

Handsontable is a JavaScript Data Grid available for React, Angular and Vue.

19 lines (18 loc) 526 B
"use strict"; exports.__esModule = true; const command = exports.command = { name: 'extendCellsSelectionUp', callback(hot) { const { selection } = hot; const { highlight } = hot.getSelectedRangeLast(); if (!selection.isSelectedByColumnHeader() && !selection.isSelectedByCorner() && (highlight.isCell() || highlight.isHeader() && selection.isSelectedByRowHeader())) { selection.markSource('keyboard'); selection.transformEnd(-1, 0); selection.markEndSource(); } } };