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 sourceDataObject = [
  {
    category: 'Best Rock Performance',
    artist: null,
    title: null,
    label: null,
    __children: [
      {
        title: 'Don\'t Wanna Fight',
        artist: 'Alabama Shakes',
        label: 'ATO Records'
      },
      {
        title: 'What Kind Of Man',
        artist: 'Florence & The Machine',
        label: 'Republic'
      },
      {
        title: 'Something From Nothing',
        artist: 'Foo Fighters',
        label: 'RCA Records'
      },
      {
        title: 'Ex\'s & Oh\'s',
        artist: 'Elle King',
        label: 'RCA Records'
      },
      {
        title: 'Moaning Lisa Smile',
        artist: 'Wolf Alice',
        label: 'RCA Records/Dirty Hit',
        __children: [
          {
            title: 'Don\'t Wanna Fight',
            artist: 'Alabama Shakes',
            label: 'ATO Records'
          },
          {
            title: 'What Kind Of Man',
            artist: 'Florence & The Machine',
            label: 'Republic'
          },
          {
            title: 'Something From Nothing',
            artist: 'Foo Fighters',
            label: 'RCA Records',
            __children: [
              {
                title: 'Don\'t Wanna Fight',
                artist: 'Alabama Shakes',
                label: 'ATO Records'
              },
              {
                title: 'What Kind Of Man',
                artist: 'Florence & The Machine',
                label: 'Republic'
              },
              {
                title: 'Something From Nothing',
                artist: 'Foo Fighters',
                label: 'RCA Records'
              },
              {
                title: 'Ex\'s & Oh\'s',
                artist: 'Elle King',
                label: 'RCA Records'
              },
              {
                title: 'Moaning Lisa Smile',
                artist: 'Wolf Alice',
                label: 'RCA Records/Dirty Hit'
              }
            ],
          },
          {
  ...