在我尝试过之后,我正在尝试在primeng表中实现multiselect
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
tableHeader= [
{ 'field': 'type', 'header': 'Type' },
{ 'field': 'value', 'header': 'Value' },
];
tableValue = [
{'type':'A1','value':'row1'},
{'type':'A1','value':'row2'},
{'type':'A2','value':'row3'},
{'type':'A2','value':'row4'},
{'type':'A1','value':'row5'},
];
statusOptions = [
{ 'label': 'A1', 'value': 'A1' },
{ 'label': 'A2', 'value': 'A2' }
];
}
并且html文件是
<p-table [columns]="tableHeader" [value]="tableValue" [sortOrder]="1"
[responsive]="true" rowHover="true" [rowsPerPageOptions]="[5,10,25]" alwaysShowPaginator="false" [rows]="10"
sortMode="multiple" #tdv>
<ng-template pTemplate="header">
<tr>
<th *ngFor="let col of tableHeader" [pSortableColumn]="col.field">
<span>{{col.header}}</span>
</th>
</tr>
<tr>
<th *ngFor="let col of tableHeader" [pSortableColumn]="col.field">
<p-multiSelect [options]="statusOptions" *ngIf='col.field =="type"' (onChange)="tdv.filter($event.value,col.field,'equals')"></p-multiSelect>
</th>
</tr>
</ng-template>
<ng-template pTemplate="body" let-row>
<tr>
<td>{{row.type}}</td>
<td>{{row.value}}</td>
</ng-template>
</p-table>
我正在尝试使用A1
和A2
过滤值。但是,如果我选择单个值,则它起作用,但是如果我选择多个值,则它不起作用。我不知道如何解决这个问题。
答案 0 :(得分:1)
选择A1和A2时的mutlisect
值为"A1,A2"
,因此您需要使用in
而不是equals
:
<p-multiSelect [options]="statusOptions" *ngIf='col.field =="type"' (onChange)="tdv.filter($event.value,col.field,'in')"></p-multiSelect>