How to use ngChange in custom directive

11,089

Solution 1

By try and error I found code that work with ngModel and ngChange:

return {
    restrict: 'E',
    require: 'ngModel',
    scope: {},
    template: '<div class="toggle-button" ng-class="{true: toggleValue === true, false: toggleValue === false}">'+
        '<button class="true" ng-click="toggle(true)">Y</button>'+
        '<button class="false" ng-click="toggle(false)">N</button>'+
        '</div>',
    link: function(scope, element, attrs, ngModel) {
        ngModel.$viewChangeListeners.push(function() {
            scope.$eval(attrs.ngChange);
        });
        ngModel.$render = function() {
            scope.toggleValue = ngModel.$modelValue;
        };
        scope.toggle = function(toggle) {
            scope.toggleValue = toggle;
            ngModel.$setViewValue(toggle);
        };
    }
};

For unknow reason scope: true don't work (if I have $scope.toggle variable used as model, it try to execute that boolean instead of a function)

Solution 2

Try this way:

controller:

$scope.someFunction = function(){...};
$scope.someValue = false;

view:

<toggle change="someFunction" value="someValue"/>

directive (in the case when someValue is always boolean true/false):

app.directive('toggle', function(){
    return{
        restrict: 'E',
        replace: true,
        template: ''+ 
            '<div class="toggle-button" ng-class="toggleValue">'+
                '<button ng-class="toggleValue" ng-click="change()">{{toggleValue&&\'Y\'||\'N\'}}</button>'+
            '</div>',
        scope: {
            toggleValue: '=value',
            toggleChange: '=change'
        },
        link: function(scope){
            scope.change = function(){
                scope.toggleValue = !scope.toggleValue;
                scope.toggleChange();
            }
        }
    };
})
Share:
11,089
jcubic
Author by

jcubic

My name is Jakub T. Jankiewicz, I'm coding mostly in JavaScript. I love Lisp Macros, jQuery library, ReactJS, CSS3, HTML5, SVG, GNU/Linux, GNU Emacs and Inkscape. Working with JavaScript and R for Roche/Genentech via Astek Poland. my english blog - In Code We Trust my polish blog - Głównie JavaScript (ang. Mostly JavaScript) Usefull Links Other links Yet another links Few of my JavaScript Open Source projects: jQuery Terminal: JavaScript library for Web based Terminal Emulator LIPS - Powerful Scheme based lisp interpreter written in JavaScript sysend.js: Library for sending messages between Windows and Tabs Gaiman Programming Language and Text based Game engine GIT Web Terminal Posts: EchoJS News, EchoJS News (2), HackerNews

Updated on August 21, 2022

Comments

  • jcubic
    jcubic almost 2 years

    I want to create directive for toggle button, I have code that I want to put into directive:

    <div class="toggle-button" ng-class="{true: toggleTrue === true, false: toggleTrue === false}">
        <button class="true" ng-click="toggleTrue = true">Y</button><button class="false" ng-click="toggleTrue = false">N</button>
    </div>
    

    (I only work on style change, that's why I have only class change)

    I want to have something like:

    <toogle ng-change="SomeFunction()" ng-model="someValue" />
    

    how can I work with ng-change in my directive? Should I just parse attr or use scope attribute or is there a code like with ngModel that need to be use together with ngChange.