Angularjs 避免关闭uib typeahead搜索结果

Angularjs 避免关闭uib typeahead搜索结果,angularjs,bootstrap-typeahead,Angularjs,Bootstrap Typeahead,我已经搜索过了,但仍然找不到任何有效的解决方案来避免typeahead弹出窗口(下拉)关闭 我想防止typeahead关闭下拉列表 单击搜索结果下拉列表外侧时,找不到任何要附加的匹配eventhandler。 文件: 版本:ui-bootstrap-tpls.js,1.3.3 <div > <input type="button" class="btn-primary" value="Filter" > <input typ

我已经搜索过了,但仍然找不到任何有效的解决方案来避免typeahead弹出窗口(下拉)关闭

我想防止typeahead关闭下拉列表

单击搜索结果下拉列表外侧时,找不到任何要附加的匹配eventhandler。 文件:

版本:ui-bootstrap-tpls.js,1.3.3

    <div >
        <input type="button" class="btn-primary" value="Filter" >

        <input type="text"
            autocomplete="off" class="search-box form-control" name="top-search" ng-model="searchController.searchQuery" uib-typeahead="element as element.Name for name in searchController.getSearchResult($viewValue)"
            typeahead-template-url="search-result.html" typeahead-min-length="3" typeahead-on-select="searchController.onSelect($item)"
            typeahead-wait-ms="250" />

    </div>