Skip to content

akvarel/angular-autocomplete

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

angular-autocomplete

#Demo

[http://vladb95.github.io/angular-autocomplete/]

Installation

$ bower install angular-materialize-autocomplete

Dependencies

Using

###script.js

angular.module('demoApp',['auto-complete']);

angular.module('demoApp').controller('demoCtrl',demoController);

demoController.$inject=['$scope'];
function demoController($scope){
  $scope.input='';
	$scope.data=["john", "bill", "charlie", "robert", "alban",
  "oscar", "marie", "celine", "brad", "drew", "rebecca",
   "michel", "francis", "jean", "paul", "pierre", "nicolas", "alfred"];
  $scope.color='#00BCD4';
}

###index.html

<auto-complete-input auto-data="data" ac-title="'Choose employee'" color="color" input-model="input"></auto-complete-input>

About

Angular autocomplete directive with materialize styles

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • JavaScript 85.5%
  • HTML 14.5%