Handsontable example
by oo7_sakshi
HTML
<div id="example1" class="hot handsontable htColumnHeaders"></div>
CSS
</style><!-- Ugly Hack due to jsFiddle issue -->
<script src="https://docs.handsontable.com/pro/1.6.0/bower_components/handsontable-pro/dist/handsontable.full.min.js"></script>
<link type="text/css" rel="stylesheet" href="https://docs.handsontable.com/pro/1.6.0/bower_components/handsontable-pro/dist/handsontable.full.min.css">
<script src="https://docs.handsontable.com/pro/1.6.0/bower_components/numbro/dist/languages.min.js"></script>
JavaScript
document.addEventListener("DOMContentLoaded", function() {
function getCarData() {
return [
{car: "Mercedes A 160", year: 2011, price_usd: 7000, price_eur: 7000},
{car: "Citroen C4 Coupe", year: 2012, price_usd: 8330, price_eur: 8330},
{car: "Audi A4 Avant", year: 2013, price_usd: 33900, price_eur: 33900},
{car: "Opel Astra", year: 2014, price_usd: 5000, price_eur: 5000},
{car: "BMW 320i Coupe", year: 2015, price_usd: 30500, price_eur: 30500}
];
}
var
container = document.getElementById('example1'),
hot;
hot = new Handsontable(container, {
data: getCarData(),
colHeaders: true,
afterSelection: function(r,c){
var data = this.getDataAtRow(r);
alert(data);
}
});
});