axel-zarate / js-custom-select

Custom auto-complete select box for AngularJS and Bootstrap
MIT License
68 stars 59 forks source link

customSelect control searching its not working in customSelect.js version 2. #33

Closed bhattjeet closed 8 years ago

bhattjeet commented 8 years ago

Hello All,

I am using below drop down but searching functionality its not working in customSelect.js version 2. <div ng-model="fruit" custom-select="f for f in fruits" autofocus></div>

Please advice me if anything was missing.

axel-zarate commented 8 years ago

You need to add a filter to the expression:

<div ng-model="fruit" custom-select="f for f in fruits | filter: $searchTerm" autofocus></div>