如何在角度中获取元素的选择事件?

时间:2016-01-18 15:37:15

标签: javascript angularjs angularjs-directive angularjs-scope angular-ui-router

你能告诉我如何在角度中选择元素的事件吗? 我使用这个github进行演示 https://github.com/codecapers/AngularJS-FlowChart

现场演示 https://dl.dropboxusercontent.com/u/16408368/WebUI_FlowChart/index.html

在演示用户中可以选择节点并删除节点。我想获得节点的点击事件。我想获得所选对象。 我们可以在角度js

中获取选定的对象或点击节点的事件

这是我的代码 http://plnkr.co/edit/vTgDa3AfY8aiWVgUgZf8?p=preview

<div ng-controller="cntrl" style="width: 100%; height:100%;">
     <div style="width: 100%; height:100%;">
     <flow-chart
        style="margin: 5px; width: 100%; height: 100%;"
        chart="chartViewModel"
        >
    </flow-chart>
    </div>
   </div>

任何更新?

1 个答案:

答案 0 :(得分:0)

该流程图指令是第三方还是您构建了它?

如果指令不是第三方并且添加点击事件,则可以编辑该指令:

<button type="button" class="event--cooking today">Today</button>
<button type="button" class="event--cooking today important">Important Today</button>
<button type="button" class="event--cooking tomorrow important">Important Tomorrow</button>