我内置了ng2-bootstrap的Typeahead组件,但我需要该字段才能点击下拉。不幸的是,Dropdown Components不支持此功能。是否有任何选项(我看过,但找不到)允许你像这样下载Typeahead组件?好像它正在使用带有空字符串搜索的Typeahead?
我应该提一下,我已经尝试了typeaheadMinLength
选项,它允许在退回条目后显示完整列表,但不会在焦点上显示。
当前代码:
<input [(ngModel)]='filters.itemFilter' [typeahead]='items' typeaheadOptionField='name' typeaheadMinLength='0' class="form-control" placeholder='Items'/>
任何帮助都将不胜感激。
答案 0 :(得分:2)
您应该尝试[typeaheadMinLength]="0"
而不是typeaheadMinLength='0'
。它对我有用。