react-datasheet icon indicating copy to clipboard operation
react-datasheet copied to clipboard

Add customNavigate event

Open aofong opened this issue 4 years ago • 0 comments

const customNavigate = (cell, keyCode, e) => {
    if (keyCode === 13) {
      return [{ i: 0, j: e.shiftKey ? -1 : 1 }, true];
    }
    return null;
};

aofong avatar May 29 '20 07:05 aofong