ag-grid:列固定不起作用
ag-grid: column pinning not working
我试图在 table 的右侧固定几个列组,但水平滚动条仍然适用于所有列。
这是列定义:
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
]
} ];;
您只能固定列本身,而不是此处的 "parent" 列。
将所有子列固定在您要固定的组下,它应该会按预期工作。
我试图在 table 的右侧固定几个列组,但水平滚动条仍然适用于所有列。
这是列定义:
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
]
} ];;
您只能固定列本身,而不是此处的 "parent" 列。
将所有子列固定在您要固定的组下,它应该会按预期工作。