I have set container like:

<div class="container" ng-app="myApp" ng-controller="tagsCtrl">
    <h3>Angular Tags List Editor - Autocomplete</h3>

    <div class="row">
      <div class="col-md-7">

        <div class="panel panel-default">
              <div class="panel-heading"><h4><i class="fa fa-tag fa-lg"></i> Tags</h4></div>
              <div class="panel-body">
                  <div class="row">
                    <div class="col-md-12">

                      <tag-manager tags="tags" autocomplete="allTags"></tag-manager>
                      <hr>
                      <h3>Current Tags</h3>
                      <ul class="list-unstyled">
                        <li ng-repeat="tag in tags">{{tag}}</li>
                      </ul>

                    </div>

                  </div>
              </div><!--/panel-body-->
          </div>
      </div>
    </div><!--/row-->
</div><!--/container-->

I have set container like:

<div class="container" ng-app="myApp" ng-controller="tagsCtrl">

    <h3>Angular Tags List Editor - Autocomplete</h3>



    <div class="row">

      <div class="col-md-7">



        <div class="panel panel-default">

              <div class="panel-heading"><h4><i class="fa fa-tag fa-lg"></i> Tags</h4></div>

              <div class="panel-body">

                  <div class="row">

                    <div class="col-md-12">



                      <tag-manager tags="tags" autocomplete="allTags"></tag-manager>

                      <hr>

                      <h3>Current Tags</h3>

And testing javascript like:

$(document).ready(function()
 {
  var $ = jQuery;
  var myApp = angular.module('myApp',[])
  .directive('tagManager', function()
   {
    return {
    restrict: 'E',
    scope: {
     tags: '=',
     autocomplete: '=autocomplete'
     },
    template:
     '<div class="tags">' +
     '<div ng-repeat="(idx, tag) in tags" class="tag label label-success">{{tag}} <a class="close" href ng-click="remove(idx)">×</a></div>' +
     '</div>' +
     '<div class="input-group"><input type="text" class="form-control" placeholder="add a tag..." ng-model="newValue" /> ' +
     '<span class="input-group-btn"><a class="btn btn-default" ng-click="add()">Add</a></span></div>',
    link: function ($scope, $element) {

      var input = angular.element($element).find('input');

      // setup autocomplete
      if ($scope.autocomplete) {
       $scope.autocompleteFocus = function(event, ui) {
        input.val(ui.item.value);
        return false;
       };
       $scope.autocompleteSelect = function(event, ui) {
        $scope.newValue = ui.item.value;
        $scope.$apply($scope.add);

        return false;
       };
       $($element).find('input').autocomplete(
        {
        minLength: 0,
        source: function(request, response) {
          var item;
          return response(
           (function()
            {
             var _i, _len, _ref, _results;
             _ref = $scope.autocomplete;
             _results =[];
             for (_i = 0, _len = _ref.length; _i < _len; _i++) {
              item = _ref[_i];
              if (item.toLowerCase().indexOf(request.term.toLowerCase()) !== -1) {
               _results.push(item);
              }
             }
             return _results;
            }
           )()
          );
         },
        focus: (function(_this)
          {
           return function(event, ui) {
            return $scope.autocompleteFocus(event, ui);
           };
          }
         )(this),
        select: (function(_this)
          {
           return function(event, ui) {
            return $scope.autocompleteSelect(event, ui);
           };
          }
         )(this)
        }
       );
      }

      // adds the new tag to the array
      $scope.add = function() {
       // if not dupe, add it
       if ($scope.tags.indexOf($scope.newValue)==-1) {
        $scope.tags.push($scope.newValue);
       }
       $scope.newValue = "";
      };

      // remove an item
      $scope.remove = function (idx) {
       $scope.tags.splice(idx, 1);
      };

      // capture keypresses
      input.bind('keypress', function (event)
       {
        // enter was pressed
        if (event.keyCode == 13) {
         $scope.$apply($scope.add);
        }
       }
      );
     }
    };
   }
  )

  .controller('tagsCtrl', function ($scope)
   {
    $scope.tags =['bootstrap', 'list', 'angular'];
    $scope.allTags =['bootstrap', 'list', 'angular', 'directive', 'edit', 'label', 'modal', 'close', 'button', 'grid', 'javascript', 'html', 'badge', 'dropdown'];
   }
  );
 }
);

How to solve this testing script as it includes {{tag}} which is prohibited by Smarty...

Recommended Answers

All 2 Replies

You can set the delimiter tags Smarty should use to anything you want, or use {literal} to escape a block using the curly braces, but not using tags.

As structure includes folder, can you please post updated code inside ZIP file like scotch.io.
app/
----- shared/ // acts as reusable components or partials of our site
---------- sidebar/
--------------- sidebarDirective.js
--------------- sidebarView.html
---------- article/
--------------- articleDirective.js
--------------- articleView.html
----- components/ // each component is treated as a mini Angular app
---------- home/
--------------- homeController.js
--------------- homeService.js
--------------- homeView.html
---------- blog/
--------------- blogController.js
--------------- blogService.js
--------------- blogView.html
----- app.module.js
----- app.routes.js
assets/
----- img/ // Images and icons for your app
----- css/ // All styles and style related files (SCSS or LESS files)
----- js/ // JavaScript files written for your app that are not for angular
----- libs/ // Third-party libraries such as jQuery, Moment, Underscore, etc.
index.html

Do you have working example according to this structure?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.