0
votes
1answer
52 views

ng-repeat, ng-click, directive, and controller interaction

I have this directive snippet: return { scope: {}, restrict: 'E', templateUrl: 'partials/order_table.html', controller: 'OrderController as x', link : ...
6
votes
2answers
2k views

Using AngularJS and jsPlumb (use jsPlumb functions in AngularJS controller)

So I have a project that I am working on and it requires that I use jsPlumb for graphical elements connections and I am building my app entirely using AngularJS. What is the procedure to follow if I ...
0
votes
2answers
735 views

Issues indirectly updating ngModel from ngClick

I have an ngRepeat that populates a list of customers, shown here : <div ng-repeat="terr in terrData.data"> <div class="customer-row" ng-click="clickCustomerSelect(terr)"> ...