MenuTabs 没有出现在 Ag-Grid 中

MenuTabs not showing up in Ag-Grid

我只是想让列菜单选项卡显示在 Ag-Grid 中。没什么复杂的。我想要常规选项卡和列选项卡,就像在演示中一样 here

当我什么都不设置时,只显示常规选项卡。如果我设置 general 和 columns,只有 general 出现。如果我只设置列,我会得到一个奇怪的空白栏。

这是常规和列集:

代码(在 gridOptions 中 - 请注意我使用的是 CoffeeScript)

defaultColDef:
  sortable: true
  resizable: true
  menuTabs: ['generalMenuTab', 'columnsMenuTab']

控制台中未报告任何错误。如果重要,请使用 Vue.js。

要达到预期结果,请使用以下选项使用 getMainMenuItems 回调而不是 menuTabs

var gridOptions = {
    sortable: true
    resizable: true
    getMainMenuItems: () => {
     return ['generalMenuTab', 'columnsMenuTab']
    }

我使用的 material 主题不完全支持 MenuTab。我已经切换到 Balham,现在有了我想要的菜单选项卡。