1
在angular2-tree-component中需要實現上下文菜單(右鍵單擊)的幫助。請在這幫忙。我已經得到了樹木工作正常。我不知道如何讓IActionMapping函數工作。angular2-tree-component中的上下文菜單
在angular2-tree-component中需要實現上下文菜單(右鍵單擊)的幫助。請在這幫忙。我已經得到了樹木工作正常。我不知道如何讓IActionMapping函數工作。angular2-tree-component中的上下文菜單
我所做的是以編程方式右鍵單擊上下文菜單。
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>
你有任何溶液? –