Hi,
I am refering to this question: Disable cell selection
We would like to be able to disable the selection only for some cells.
It looks like Handsontable.GridSettings.disableVisualSelection is working as expected, but Handsontable.CellProperties.disableVisualSelection has no effect. We are using the Angular wrapper like this:
const gridSettings: HandsonTable.GridSettings = {
....
cells: (row, col) => {
const cellProperties: Handsontable.CellMeta = {
disableVisualSelection : ['current', 'area']; // this has no efect
};
return cellProperties;
}
}
Is this normal that this has no effect ?
Thank you for your help and best regards,
Vincent