如何根据条件从选项选择中禁用选项

时间:2019-04-08 07:30:05

标签: html typescript angular7

我有两个席位选择,在第一个中,我选择客户个人或组织客户的类型。 如果用户选择了Ind Customer,则我将显示另一个选择。 但是,问题出在第二个垫子上,选择我要禁用某些输入字段的下拉选项。我该如何实现?

HTML代码以选择客户类型

   <mat-form-field>
   <mat-label>Select Customer Type</mat-label>
   <mat-select (onSelectionChange)="getCustType($event)">
   <mat-option *ngFor="let obj of custType" (click)="getCustType(obj)" 
   [value]="obj" > {{ obj.viewValue }}</mat-option>
   </mat-select>
   </mat-form-field>

打字稿代码:

custType: any[] = [{ value: 'indCust', viewValue: 'IndividualCustomer' }, { value: 'orgCust', viewValue: 'Organizational Customer' }];

第二个下拉HTML代码:

<mat-form-field class="col-sm-3">
    <mat-label>Select Option to Edit</mat-label>
    <mat-select (onSelectionChange)="getoptiontoedit($event)" >
      <mat-option *ngFor="let obj of optiontoeditlist" (click)="getoptiontoedit(obj)" [value]="obj"> {{ obj.viewValue }}</mat-option>
    </mat-select>
  </mat-form-field>

第二个下拉菜单的打字稿代码:

  optiontoeditlist: any[] = [
{ value: 'address', viewValue: 'Address' },
{ value: 'agentRelationship', viewValue: 'Agent Relationship' },
{ value: 'agreementRelationship', viewValue: 'Agreement Relationship' },
{ value: 'organizationCustomer', viewValue: 'Organization Customer' },
{ value: 'complaint', viewValue: 'Complaint' },
{ value: 'contact', viewValue: 'Contact' },
{ value: 'identification', viewValue: 'Identification' },
{ value: 'individualCustomer', viewValue: 'Individual Customer'}
];

如果用户在第一个下拉列表中选择“组织客户”,我想从第二个下拉列表中禁用/隐藏“个人客户”选项。如果用户在第一个下拉列表中选择“个人客户”,我想从第二个下拉列表中禁用/隐藏“ OrganazationalCustomer”。

1 个答案:

答案 0 :(得分:0)

您可以为第二个选项列表实现一个管道,如下所示:

@Pipe({ name: 'optfilter' })
export class OptionsFilterPipe implements PipeTransform {
   transform(alloptions: any[],firstSelectOpt: any<>) {
     return alloptions.filter(option => option.value.indexOf(firstSelectOpt.value)==-1); // or whatever your comparator condition is this just for indication
   }
 }

然后您可以像使用它

<mat-option *ngFor="let obj of optiontoeditlist | optFilter: 'selectedFirstOption'"