Hi all,
We’re moving from 0.16 version to the lastest. On creating a table we use a sentence like this:
$("#trasmercTable").handsontable({
data: $scope.tabledata,
colHeaders: cabeceras,
colWidths: anchos,
height: 260,
className: ‘text-center’,
maxRows: $scope.maxLines ? $scope.maxLines : Infinity,
selectionModel: ‘multiple’,
As you can see we use “selectionModel: ‘multiple’” to have a checkbox in the first column to select the entire row. For any reason this seems to stop working in the 9.x version, because eventhough the checkbox appears do not allow to select the row.
Does someone knows how to fix it or any workaround?
Thanks.