需要帮助在angular2-tree-component中实现上下文菜单(右键单击)。请帮助。我已经让树正常工作了。我不知道如何让IActionMapping函数工作。
答案 0 :(得分:1)
我所做的是以编程方式触发右键单击上下文菜单。
options: ITreeOptions = {
actionMapping: {
mouse: {
contextMenu: (model: any, node: any, event: any) => {
this.onContextMenu(event, node.data.name);
console.log('in context menu...');
}
}
},
};
<tree-root #tree [nodes]="nodes" [options]="options"></tree-root>