How to disable selection of cells in ag-grid?

后端 未结 5 1666
暖寄归人
暖寄归人 2021-01-01 12:03

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

5条回答
  •  旧时难觅i
    2021-01-01 12:13

    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

提交回复
热议问题