39

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 also be fine. I just want no visual change to the cell when the user clicks inside it. How can I do this?

I see that ColDef has a property suppressNavigable that sort of helps, since it disallows using the tab key to select the cells, but it still allows selection by clicking. Also, the grid itself seems to offer suppressCellSelection but it doesn't seem granular enough and doesn't seem to affect anything anyway.

So, how can I remove this blue border cell selection?

Here's the code I have for these column definitions:

this.columnDefs = [
  { headerName: 'One', field: 'one' },
  { headerName: 'Two', field: 'two' },
  { 
    // I want to disable selection of cells in this column
    headerName: 'I want no cell selection!', 
    field: 'three',   
    suppressNavigable: true,
    editable: false,
  }
];

Here's a stackblitz example I was using to test with.

Here's a screenshot of the blue border I don't want to see in this column:

I don't want to see the blue border

KARTHIKEYAN.A
  • 18,210
  • 6
  • 124
  • 133
Chris Farmer
  • 24,974
  • 34
  • 121
  • 164
  • Pls help https://stackoverflow.com/questions/65018177/ag-grid-community-infinite-row-model-for-server-side-pagination-community-free/65040658#65040658 – NeverGiveUp161 Dec 03 '20 at 06:15

8 Answers8

48

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 !important;
}
/* This CSS is to not apply the border for the column having 'no-border' class */
.no-border.ag-cell:focus{
  border:none !important;
  outline: none;
}

And use the same class as cellClass in ColDef

suppressNavigable: true,
cellClass: 'no-border'

Live example: aggrid-want-to-disable-cell-selection
This won't show border for the cell you even focus using mouse click.


Update

As per Documentation and comment mentioned by X.Aurther, the option has been renamed to suppressCellFocus.

Paritosh
  • 11,144
  • 5
  • 56
  • 74
33

I'd suggest to use the suppressCellSelection option in gridOptions. A CSS quick fix is not something that I'd suggest to go for.

this.gridOptions = {
  // Your grid options here....
  suppressCellSelection: true
};

As suggested by @aderchox, from v27.0 onwards, the option has been renamed to suppressCellFocus.

Ryan Tsui
  • 918
  • 5
  • 14
6

You can try this css hack. no custom flags needed.

.ag-cell-focus, .ag-cell {
    border: none !important;
}

Example - https://stackblitz.com/edit/aggrid-want-to-disable-cell-selection-answer?file=src%2Fstyles.css

enter image description here

Jossef Harush Kadouri
  • 32,361
  • 10
  • 130
  • 129
  • This only removes the highlight. The keyboard navigation behavior is retained, so you'll get strange behavior with the left and right arrow keys if your table scrolls horizontally. – Joshua Wade Mar 09 '20 at 20:38
  • 1
    This post answers the OP's question in that OP said "Simply removing the default blue outline during selection would also be fine". And it does exactly that. Amazing that this got downvoted. – Ross Attrill Jul 24 '20 at 05:53
5

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" },
  ...
}

Live Demo

Edit 50862009/how-to-disable-selection-of-cells-in-ag-grid/50863144#50863144

NearHuscarl
  • 66,950
  • 18
  • 261
  • 230
0

Try this one it's work for me

::ng-deep .ag-cell-focus,.ag-cell-no-focus{
border:none !important;
}
::ng-deep .no-border.ag-cell:focus{
border:none !important;
outline: none;
}
Afeesudheen
  • 936
  • 2
  • 12
  • 21
0

You can try this, If you want to apply it over all the cells. It worked for me.

.ag-cell-focus,.ag-cell-no-focus{
  border: 1px solid transparent !important;
}

::ng-deep .ag-cell:focus{
  border: 1px solid transparent !important;
  outline: none;
}
Riti verma
  • 21
  • 3
0

AG Grid supports customizing CSS variable for most themes. Try defining the selection border color on the grid container or any parent.

--ag-range-selection-border-color: transparent;

AG Grid: Setting colour parameters using CSS variables

Josiah Ruddell
  • 29,697
  • 8
  • 65
  • 67
0

this workd guys
add this line inside same props className="ag-theme-alpine" .ag-cell-focus, .ag-cell-no-focus { border: none !important; } /* This CSS is to not apply the border for the column having 'no-border' class */ .no-border.ag-cell:focus { border: none !important; outline: none; }

faery
  • 61
  • 2
  • 5