Closed
Description
I can toggle multiselect using the api:
$scope.gridApi.selection.setMultiSelect(!$scope.gridApi.grid.options.multiSelect);
but there is no way to toggle the RowHeaderSelection:
$scope.gridApi.selection.setRowHeaderSelection(!$scope.gridApi.grid.options.enableRowHeaderSelection);
changing the gridOptions does not work either.
$scope.gridApi.grid.options.enableRowHeaderSelection = false;