我需要一种方法,仅允许用户使用handsontable选择行或列(或对整个行和整个列的多项选择)。
最佳答案
经过一些研究和实验,我能够在没有单元格和行手柄的情况下实现单行突出显示。
可操作选项:
var x = new Handsontable(element, {
...
multiSelect: false,
disableVisualSelection: ['current', 'area'],
currentRowClassName: 'currentRow'
}
CSS:
.currentRow, .highlight {
background-color: lightblue;
}