在我的应用程序中使用
ng2-completer,当我们开始输入它会使api调用,它将从服务器获取记录工作正常.问题是如果完成获取超过50个条目,那么它与整个屏幕重叠,我如何限制下拉长度?我尝试了下面的CSS,但它不工作.
.completer-dropdown { overflow-y: auto !important; max-height: 100px !important; }
这是我的HTML代码.
<ng2-completer placeholder="Enter Your Locality Name" class="overlay" [dataService]="dataServiceForLocality" [minSearchLength]="3" [fieldTabindex]="2" [(ngModel)]="localityValue" (selected)="selectedLocality($event)" [textSearching]="'Please wait...'" formControlName="locality" style="height: 50px;" (keyup)="onKey($event.target.value)"></ng2-completer>
您可以查看实例here.