a-autocomplete
v0.0.1-beta-9
Published
Wrapper for Jquery ui autocomplete
Downloads
181
Readme
A-Autocomplete
Angular lib wrapper for JQuery ui Autocomplete
Install
npm install --save a-autocompleteUsage
- Import the module in your module.
import {AAutocompleteModule} from 'a-autocomplete';
@NgModule({
...
imports:[AAutocompleteModule]
...
})- Include the js and the css in your .angular-cli.json
...
"styles": [
"../node_modules/jquery-ui-dist/jquery-ui.min.css"
],
"scripts": [
"../node_modules/jquery/dist/jquery.min.js",
"../node_modules/jquery-ui-dist/jquery-ui.min.js"
]
...- Use it in the component
<input [options]="{source: ['hola', 'mundo']}" a-autocomplete>You can set any autocomplete option, that jquery-ui autocomplete in [Autocomplete Docs] (http://api.jqueryui.com/autocomplete/)
