如何转换为可编辑的选择框?

时间:2019-04-04 15:09:08

标签: angular bootstrap-4 angular-ui ui-select2

我有一个带有bootstrap的angular 5项目。在我的组件html之一中,我有一个选择框。当我单击它时,将显示一个下拉列表,我可以选择一个。但是我希望用户键入一些字符串,以便可以缩小下拉菜单项的范围。这是我当前的代码段,不知道如何将选择框转换为可编辑的框。

   <select formControlName="contactList" [compareWith]="compareResource">
      <option value="" disabled>{{ 'PLACEHOLDERS.CONTACT_LIST' | translate }}</option>
      <option *ngFor="let contactList of contactLists" [ngValue]="contactList">{{ contactList.name }}</option>
    </select>

我想将现有的选择框代码转换为可编辑的选择框。请分享您对此的想法。我对UI编程非常陌生。谢谢

2 个答案:

答案 0 :(得分:1)

这可以通过使用ng-select

来实现

安装ng-select

npm install --save @ng-select/ng-select

app.module.ts

将其导入模块

import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { NgSelectModule } from '@ng-select/ng-select';

import { AppComponent } from './app.component';

@NgModule({
  declarations: [
    AppComponent,
  ],
  imports: [
    BrowserModule,
    FormsModule,
    CommonModule,
    NgSelectModule,
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

style.css

导入ng-select默认样式

@import "~@ng-select/ng-select/themes/default.theme.css";

app.component.html

通过将nameList绑定为下拉列表和搜索功能的items数组来创建ng-select下拉列表

<div style="text-align:center">
  Editable Dropdown
</div>

<div style="width:300px; height:200px">
  <ng-select class="autocomplete" dropdownPosition="bottom" [searchFn]="searchName" [items]="nameList"
    [(ngModel)]="selectedName" [dropdownPosition]="'auto'">
    <ng-template ng-header-tmp>
      <div class="container-fluid">
        <div class="row">
          <div class="col-md-6">Username</div>
        </div>
      </div>
    </ng-template>
    <ng-template ng-label-tmp let-item="item">
      <span>{{item}}</span>
    </ng-template>
    <ng-template ng-option-tmp let-item="item" let-index="index">
      <div class="container-fluid">
        <div class="row">
          <div class="col-md-4">{{item}}</div>
        </div>
      </div>
    </ng-template>
  </ng-select>
</div>

app.component.ts

初始化nameList并定义搜索功能。在这里,我将返回包含从下拉列表

输入的值的名称
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css'],
})
export class AppComponent implements OnInit {
  selectedName: string;
  nameList: string[];

  constructor() { }

  ngOnInit() {
    this.nameList = this.getNameList();
  }

  getNameList(): string[] {
    return [
      'Adam',
      'Alex',
      'Bob',
      'Bennt',
      'Cathrina',
      'Dug',
      'Suzzy',
      'Amy',
      'Milan'
    ];
  }

  searchName(filter: string, item: string) {
    filter = filter.toLocaleLowerCase();
    return (item.toLocaleLowerCase().indexOf(filter) > -1);
  }
}

答案 1 :(得分:0)

您可以使用“角度材料自动完成过滤器”来获得所需的结果。 -https://material.angular.io/components/autocomplete/overview#adding-a-custom-filter