Why does the “cells” option/function runs more than once? If you run the below, the console shows two lines. However, there is only 1 cell.
const data = [
['Sheet1 A1'],
];
const container = document.querySelector('#example1');
const hot = new Handsontable(container, {
data: data,
height: 'auto',
cells(row, col) {
// Why does the following run twice?
console.log('R'+row+'C'+col);
},
licenseKey: 'non-commercial-and-evaluation',
});