Ag-grid - 主/细节在没有细节数据时隐藏人字形图标

Ag-grid - Master / detail hide chevron icon when there is no detail data

在 master/detail 示例中,expand/collapse 图标在设置 [masterDetail]=true 时始终存在。但是,我的数据有时没有详细信息行,在这种情况下我想隐藏人字形。在我的示例中,callRecords 属性 会出现在数据中,但它会是 null:

getDetailRowData: function(params) {
    params.successCallback(params.data.callRecords);
},

当数据为空时,如何在主网格上不显示人字形?注意:此处可见示例:https://www.ag-grid.com/javascript-grid-master-detail-detail-grids/#detail-grid-options

文档中 here 涵盖了这一确切要求。

基本上你实现 isRowMaster -

this.isRowMaster = function(dataItem) {
  return dataItem ? dataItem.callRecords.length > 0 : false;
};

来自文档 -

In specify which rows should expand, provide the grid callback isRowMaster. The callback will be called once for each row. Return true to allow expanding and false to disallow expanding for that row.