UNPKG

handsontable

Version:

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

16 lines 476 B
export const command = { name: 'extendCellsSelectionDown', callback(hot) { const { selection } = hot; const { highlight } = hot.getSelectedRangeActive(); if (!selection.isSelectedByColumnHeader() && !selection.isSelectedByCorner() && (highlight.isCell() || highlight.isHeader() && selection.isSelectedByRowHeader())) { selection.markSource('keyboard'); selection.transformEnd(1, 0); selection.markEndSource(); } } };