ag-grid: column pinning not working

2.3k Views Asked by At

I'm trying to pin a couple of column groups on the right of a table, but the horizontal scrollbar still works on all the columns.

Here is the columns definition:

    this.cols = [{
    headerName : "Security Info",
    marryChildren : true,
    children : [        
        //columns
    ]},
    {
    headerName : "Best",
    marryChildren : true,
    pinned: 'right',
    children : [ 
        //columns
    ]
}, {
    headerName : "My Order",
    marryChildren : true,
    pinned:'right',
    children : [ 
        //columns 
        ]
} ];;
1

There are 1 best solutions below

2
On BEST ANSWER

You can only pin the columns themselves, not "parent" columns as you have here.

Pin all the child columns under a group you want pinned and it should work as expected.