UNPKG

handsontable

Version:

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

11 lines 256 B
export const command = { name: 'moveCellSelectionLeft', callback(hot) { const { selection } = hot; selection.markSource('keyboard'); selection.transformStart(0, -1 * hot.getDirectionFactor()); selection.markEndSource(); } };