Can I get a ui-grid with selection plugin enabled but without check column showing?
My html mark
<div class="grid300" ui-grid="gridOptions" ui-grid-selection></div>
My js config
$scope.gridOptions = {
data: 'dirs',
enableSelectAll: false,
onRegisterApi: function(gridApi) {
$scope.gridApi = gridApi;
gridApi.selection.on.rowSelectionChanged($scope, onRowSelection);
},
columnDefs: columnDefs
};
Expected Result:
My grid without the first checkbox column.