ag-grid:列固定不起作用

时间:2016-12-22 15:30:12

标签: ag-grid

我正在尝试在表格右侧固定几个列组,但水平滚动条仍适用于所有列。

这是列定义:

    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 个答案:

答案 0 :(得分:1)

您只能自己固定列,而不是#34; parent"你在这里的专栏。

将所有子列固定在您想要固定的组下,它应该按预期工作。