组中行的垂直滚动条

时间:2018-04-18 11:12:47

标签: ag-grid

是否可以为组内的行设置垂直滚动条,例如,组1将有10行,但我想显示最多5行(使用滚动条,滚动到第6-10行)。

-> Group 1
  - Row 1
  - Row 2
  - Row 3
  - Row 4
  - Row 5
-> Group 2
-> Group 3

1 个答案:

答案 0 :(得分:0)

是的,这对于主 - 细节模式是可行的。

var gridOptions = {
    columnDefs: columnDefs,
    masterDetail: true,
    detailCellRendererParams: {
        detailGridOptions: {
            columnDefs :[...]
            ...
            // all detail gridOptions go here
        },
        getDetailRowData: function(params) {
            params.successCallback(params.data.callRecords);
        }
    }
};

获取详细网格的处理程序

// lookup a specific DetailGridInfo by id
var detailGridInfo = masterGridOptions.api.getDetailGridInfo('someDetailGridId');

注意:仅在企业版的ag-Grid v14.2版本中可以使用。

Read more here