Skip to content

Files

Latest commit

502a6ac · Sep 20, 2013

History

History
21 lines (16 loc) · 400 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 400 Bytes

ui-select

A native version of select2.

Requires ui.keypress from ui-utils

Prototype usage:

<ui-select ng-model="data.custom" data.items>
  <li 
    ng-repeat="item in data.items | filter : $search" 
    ng-class="{highlight:highlight==$index}" 
    ng-click="$select(item)" 
    ng-mouseover="$parent.highlight=$index">
    <h4>{{item.title}}</h4>
  </li>
</ui-select>