My grid looks as follows (community edition), allowing the user to select rows (checkbox defined on column definition)
<ag-grid-angular
*ngIf='!isLoading && model.length > 0'
style="height: 70vh;" class="ag-theme-balham"
[rowData]="model"
[animateRows]="true"
[gridOptions]="gridOptions"
[rowSelection]='rowSelection'
[enableCellTextSelection]="true"
[overlayLoadingTemplate]="overlayLoadingTemplate"
(cellDoubleClicked)="onCellDoubleClicked($event)"
(selectionChanged)="onRecordSelected($event)"
(firstDataRendered)="onFirstDataRendered($event)"
(gridReady)="onGridReady($event)">
</ag-grid-angular>
One half of the page show the grid, the other part an edit for for the selected record.
While the form get saved, I'd like to disable selection in the grid. Is this possible? (maybe i'm being stupid, but could not figure out a way)