salix/client/core/src/autocomplete-v2/autocomplete.html

13 lines
554 B
HTML
Raw Normal View History

2017-09-14 11:40:55 +00:00
<vn-vertical ng-click="$ctrl.showDropDown = true">
<vn-textfield vn-one label="{{$ctrl.label}}" model="$ctrl.displayValue"></vn-textfield>
<vn-drop-down vn-one
items="$ctrl.items"
show="$ctrl.showDropDown"
selected="$ctrl.field"
search="$ctrl.displayValue"
load-more="$ctrl.getItems()"
show-load-more="$ctrl.maxRow"
filter-action="$ctrl.findItems(search)"
item-width="$ctrl.width"
2017-09-20 09:50:53 +00:00
><vn-item ng-transclude="tplItem">{{$parent.item.name}}</vn-item></vn-drop-down>
2017-09-13 12:59:58 +00:00
</vn-vertical>