我有一个带自动填充的标签列表。 但插入元素后,显示的建议列表不会显示。 (你需要开始打字,点击空格,向下箭头......这对于我们的用户来说并不直观)
有没有办法在添加元素后显示下拉列表?
我尝试使用属性on-tag-added
,但不确定要使用哪个函数。
<tags-input
ng-model="recipe.categories"
display-property="name"
add-from-autocomplete-only="true"
placeholder="Add Category"
add-on-blur="true"
on-tag-added="test('Open Sesame')"
>
<auto-complete
source="loadTags($query)"
min-length="0"
max-results-to-show="64"
load-on-focus="true"
load-on-empty="true"
load-on-click="true"
load-on-down-arrow="true">
</auto-complete>
</tags-input>
ng-tags-input 来源: https://github.com/mbenford/ngTagsInput