如何订购 ag-Grid 和 AdapTable 菜单项
How to order ag-Grid and AdapTable menu items
我们正在使用与 AdapTable 集成的 ag-Grid(React 版本)。
有没有办法对上下文菜单进行排序或排序,以便我们的自定义菜单项首先出现,然后是 AdapTable 菜单项,然后是 ag-Grid 菜单项?
我知道如何选择应显示哪些菜单项以及如何停止显示某些菜单项,但不知道如何对这些部分进行排序。
通过用户界面选项中的 contextMenuOrder
属性 完成
你会想要
adaptableOptions.userInterfaceOptions = {
columnMenuOrder: ['user', 'adaptable', 'vendor']
};
参见:https://docs.adaptabletools.com/docs/adaptable-options/user-interface-options
常规菜单文档位于:https://docs.adaptabletools.com/docs/user-interface/column-menu#items-order
我们正在使用与 AdapTable 集成的 ag-Grid(React 版本)。
有没有办法对上下文菜单进行排序或排序,以便我们的自定义菜单项首先出现,然后是 AdapTable 菜单项,然后是 ag-Grid 菜单项?
我知道如何选择应显示哪些菜单项以及如何停止显示某些菜单项,但不知道如何对这些部分进行排序。
通过用户界面选项中的 contextMenuOrder
属性 完成
你会想要
adaptableOptions.userInterfaceOptions = {
columnMenuOrder: ['user', 'adaptable', 'vendor']
};
参见:https://docs.adaptabletools.com/docs/adaptable-options/user-interface-options
常规菜单文档位于:https://docs.adaptabletools.com/docs/user-interface/column-menu#items-order