Handsontable example
by galvakojis
HTML
<div id="example1" class="hot handsontable htRowHeaders htColumnHeaders" style="height: 320px; overflow: hidden; width: 100%;" data-originalstyle="height: 320px; overflow: hidden; width: 100%;"></div>
CSS
</style><!-- Ugly Hack due to jsFiddle issue -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/handsontable.full.min.js"></script>
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/handsontable.full.min.css">
JavaScript
var example = document.getElementById('example1');
var hot1 = new Handsontable(example, {
data: Handsontable.helper.createSpreadsheetData(1000, 1000),
colWidths: 100,
width: '100%',
height: 320,
rowHeights: 23,
rowHeaders: true,
columnSorting: true,
colHeaders: function(col){
if(col === 1){
return col+ ' some text'
} else {
return col
}
},
afterGetColHeader: function(col, TH){
if(col === 1){
TH.style.background = 'blue'
TH.style.color = 'white'
}
}
});