2017-02-20 51 views

回答

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>

  • 觸發在onContextMenu上下文菜單編程方法 - 我用NGX-文本菜單