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">

JavaScript

const example = document.getElementById('example');
const hot = new Handsontable(example, {
  data: [
  	[3.01, '4,90', '5.1'],
  ],
  licenseKey: 'non-commercial-and-evaluation',
  colHeaders: ['ID', 'First name', 'Last name', 'IP', 'E-mail'],
  validator: /^\d+(.|,)+\d+$/gm
});