Here https://wetransfer.com/downloads/5076f749b75afe51b8c95dc742f1add220190528100510/c89907 is the project (full). When it comes to building the project I:
-
Went to https://emberjs.com/
-
Executed
npm install -g ember-cli
-
Run
ember new ember-quickstart
-
Added the following resources
https://cdn.jsdelivr.net/npm/handsontable@7.0.3/dist/handsontable.full.min.css
https://cdn.jsdelivr.net/npm/handsontable@7.0.3/dist/handsontable.full.min.jsin the
{{content-for "head"}}
ofapp/index.html file
-
Added the DIV element in the same file
<div class="box"></div>
-
Added the logic on creating the table
<script type="text/javascript">
var example = document.querySelector('.box');
var hot = new Handsontable(example, {
data: Handsontable.helper.createSpreadsheetData(1000, 1000),
colWidths: 100,
width: '100%',
height: 320,
rowHeights: 23,
rowHeaders: true,
colHeaders: true
});
</script>
- Run the
ember serve