我有一个角形网格,需要在网格中显示上下文菜单,但不想在特定列中显示上下文菜单。
没有任何要从列中隐藏的属性。
答案 0 :(得分:0)
您可以实现getContextMenuItems()
这样的东西-
getContextMenuItems(params) {
if(params.column.colId == "columnToDisable") {
return [];
} else {
// otherwise return array of context menu items
}
}
文档here
中的更多内容