Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to create a custom filter in AngularJS?

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 161
    Comment on it

    In AngularJS, Filters are used to format data which is served to the user. Filters are added to expressions by using the pipe(|) character and followed by a filter method. There are a lot of in-built filters available in AngularJS


     For example:
      currency: This filter is used to convert a number to a currency format.
      uppercase: This filter is used to convert a string to upper case.

     

    We can also create a custom filer according to our requirement in app.

    In the following example, we created a 'customStringFormat' custom filter which is convert the country name to lower in case using javaScript function.


    Here,
    The AngularJS app is defined using ng-app directive i.e. ng-app="angularApp" and this app runs inside the <ul>.


    Defined countryCtrl named controller using directive ng-controller i.e. ng-controller="countryCtrl"  which is a JavaScript function  and AngularJS called the countryCtrl controller with a $scope object .

     

    Registered a custom filter named 'customStringFormat' using factory filter method and passed country element to perform custom operation.

     

    1. <!DOCTYPE html>
    2. <html>
    3. <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
    4. <body>
    5. <ul ng-app="angularApp" ng-controller="countryCtrl">
    6. <li ng-repeat="n in countryArr">
    7. {{n | customStringFormat}}
    8. </li>
    9. </ul>
    10.  
    11. <script>
    12. var app = angular.module('angularApp', []);
    13. app.filter('customStringFormat', function() {
    14. return function(t) {
    15. return toLowerCase();
    16. };
    17. });
    18. app.controller('countryCtrl', function($scope) {
    19. $scope.countryArr = ['INDIA', 'ENGLAND', 'AUSTRAILIA', 'CHINA', 'NORWAY'];
    20. });
    21. </script>
    22.  
    23. <p>Create custom filter in angularjs</p>
    24. </body>
    25. </html>

     

    The output will be:

    • india
    • england
    • austrailia
    • china
    • norway

    Creating a custom filter in angularJS

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: