我正在使用AngularUI typeahead指令。一切正常,但是,保管箱菜单位置固定在底部,滚动条显示在右侧。我想在输入元素上方显示下拉菜单。
<input placeholder='Search' type="text" ng-disabled="disable" ng-model="dropdown" id="search" placeholder="Filter text" typeahead="val for val in getAllDataFiltered($viewValue)" typeahead-on-select="selectData(dropdown)" style="height:29px" typeahead-append-to-body="true">
默认样式为ng-style:"{top: position.top+'px', left: position.left+'px'}"
,我尝试了多种解决方法,例如:-使用偏移量,将上,下值设置为auto等。
但是这里没有任何作用。请帮助我将下拉菜单设置为向上显示。