Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable Column Cell Selection

Tags:

ag-grid

I would like to make a column not be able to be selectable. I currently have icons in the column and whenever the cell is clicked it gets the clicked effect. The icons trigger a modal window, so when the window is closed the cell has the clicked effect. Is there a column definition that disables the cell selection of all cells in the specified column?

like image 219
DootDootDoot Avatar asked Dec 07 '17 17:12

DootDootDoot


1 Answers

Add this to your column definition to override the border style that's applied to the cell on focus

cellStyle: {border: 'none !important'}
like image 71
Tim L Avatar answered Nov 03 '22 10:11

Tim L