Search code examples
javascriptreactjsag-gridag-grid-react

How to disable copy with group header in ag-grid-react?


I have an requirement to disable only copy with Group header in my application I have tried to disable it using css but it does't work. please help me to disable it with proper config option.

enter image description here


Solution

  • I have resolve this using css

    body div.ag-menu-option:nth-child(4) {
        display:none;
    }