AngularJS questions involving isolate scope directives
I've created a simple directive that displays sort column headers for a <table> I'm creating. ngGrid.directive("sortColumn", …
angularjs isolate-scopeCan't access controller scope from angular component output binding function I'm trying to access my home controller scope from dashboard …
angularjs angularjs-components isolate-scope//main controller angular.module('myApp') .controller('mainCtrl', function ($scope){ $scope.loadResults = function (){ console.log($scope.searchFilter); }; }); // directive angular.module('myApp') .…
angularjs angularjs-ng-change isolate-scope