How to disable selection of cells in ag-grid?
Note that if we set gridOption.suppressCellSelection = true we can disable cell selection for all columns’ cells. Here the question is regarding not showing a specific column’s cell’s highlighted border when it is selected. You can achieve this by bit of CSS and cellClass property of ColDef. You’ll need to add below CSS. .ag-cell-focus,.ag-cell-no-focus{ border:none … Read more