Handsontable example

by Nicolas Lips

HTML

<div id="example1" class="hot ht__manualColumnMove ht__manualRowMove handsontable htRowHeaders htColumnHeaders"></div>

CSS

</style><!-- Ugly Hack due to jsFiddle issue -->

<script src="https://docs.handsontable.com/2.0.0/bower_components/handsontable/dist/handsontable.full.js"></script>
<link type="text/css" rel="stylesheet" href="https://docs.handsontable.com/2.0.0/bower_components/handsontable/dist/handsontable.full.min.css">

JavaScript

var
    example1 = document.getElementById('example1'),
    hot;
  
  hot = new Handsontable(example1, {
    data: Handsontable.helper.createSpreadsheetData(200, 20),
    rowHeaders: true,
    colHeaders: true,
    colWidths: 100,
    manualColumnMove: true,
    manualRowMove: true
  });