列上下文菜单复选框在ag-grid中切换

问题描述 投票:0回答:1

我正在尝试为ag-grid中的整列添加上下文菜单复选框。通过关注this教程,我可以通过设置checked : true为我的自定义菜单添加一个复选框,但这不是一个可切换的复选框。它始终设置为true。如何让它可以切换?

javascript datagrid ag-grid
1个回答
1
投票

首先,您必须按如下方式定义网格选项的上下文:context:{thisComponent:this}

public gridOptions: any = {
   columnDefs: this.columnDefs,
   rowData: this.rowData,
   enableSorting: false,
   enableFilter: false,
   context: { thisComponent: this }
}

然后你必须创建自己的函数,返回true或false:

public checkedContextMenuFunction(params): boolean {
   if (){
       return true;
   }else {
       return false;
   }
}

并将其添加到contextMenuItems函数:

选中:params.context.thisComponent.checkedContextMenuFunction(params)

public getContextMenuItems(params) {
  return{      
     'separator',
     {
       name: 'Checked menu',
       tooltip: 'Tooltip text',
       checked: params.context.thisComponent.checkedContextMenuFunction(params),
       action: function() {
          params.context.thisComponent.differentFunction(params);
       }
   }
}
© www.soinside.com 2019 - 2024. All rights reserved.