Autocomplete - single

Autocomplete source
Disable
<div
  auto-complete=""
  id="ih"
  source="source"
  value-changed="callback(value)">
        
<input
  ng-model="foo"
  ng-disabled="disabled"
  placeholder="Select">
      
</div>

$scope.foo: {{ foo }}


Disable
<div
  auto-complete=""
  id="sh"
  source="source"
  value-changed="callback(value)"
  list-formatter="listFormatter"
  prefill-func="prefillFunc('prefill.json?id='+bar)" ,=""
  placeholder="Select Bar">
        
<select
  id="sh"
  ng-model="bar"
  ng-disabled="disabled">
        
</select>
      
</div>

$scope.bar: {{ bar }}
$scope.source: {{ source }}
$scope.selected = {{ selected }}