I have a simple ag-grid in an Angular project and want to disable selection of cells in one of its columns. Simply removing the default blue outline during selection would
You can also use cellStyle to remove the selection dynamically. Here is an example:
{ headerName: "Is Selectable", cellStyle: (params) => { if (!params.value) { return { border: "none" }; } return null; }, ... }, { headerName: "UnSelectable", cellStyle: { border: "none" }, ... }