I am attempting to disable the clipboard service in ag-grid. I have come across the enableCellTextSelection
flag, which supposedly disables it completely. However, when I try to use this flag as a direct property of <ag-grid-angular>
, it results in a template parse error.
Uncaught Error: Template parse errors:
Can't bind to 'enableCellTextSelection' since it isn't a known property of 'ag-grid-angular'.
This indicates that 'enableCellTextSelection' is not a valid property of the grid component. While I can add it directly to the gridOptions
, upon checking the resolved gridOptions.d.ts
, I found that it is not listed there as well, meaning it's not a valid property of gridOptions
.
Has this flag been removed entirely or replaced with another one? Any assistance on this matter would be greatly appreciated. Thank you!