Handsontable example

by handsoncode

HTML

<div id="example"></div>
<script src="https://cdn.jsdelivr.net/npm/handsontable@latest/dist/handsontable.full.min.js"></script>
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/npm/handsontable@latest/dist/handsontable.full.min.css">

Babel + JSX

const reg = /^\d+$/;
const container = document.getElementById('example');
const hot = new Handsontable(container, {
  data: [
    [1]
  ],
  licenseKey: 'non-commercial-and-evaluation',
  colHeaders: true,
  beforeKeyDown(event) {
    if (reg.test(event.key)) {
    	return;
    }

   	event.preventDefault();
  },
});