Hi all,
I need to highlight selected row.
As described in tutorials I use next settings
var hotSettings = {
data: columnValues,
colHeaders: columnHeaders,
currentRowClassName: ‘currentRow’,
** currentColClassName: ‘currentCol’,**
minSpareRows: 1,
contextMenu: true,
manualColumnResize: true,
manualRowResize: true,
autoRowSize: true,
}
and then
hot.selectCell(0,0);
But this doesn’t work at all.
Are there other options?
thanks in advance!