I want to click choose row of table when click any location of row.
And i aslso want to hide rowHeaders
Help me choose row/ multi rows when click row of hansontable
To hide row headers on the button click you can use the instance.updateSettings({rowHeaders: false})
.
And to select a whole row when someone clicks a cell you can use the afterOnCellMouseDown
hook (ref: https://handsontable.com/docs/javascript-data-grid/api/hooks/#afteroncellmousedown) to execute instance.selectCell()
(ref: https://handsontable.com/docs/javascript-data-grid/api/core/#selectcell). This methods allows you to select many cells at once.
1 Like