-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagrydfilter1a.txt
44 lines (40 loc) · 992 Bytes
/
agrydfilter1a.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<ag-grid-angular
style="height: 200px;"
class="ag-theme-balham"
[rowData]="rowData"
[columnDefs]="columnDefs"
[animateRows]="true"
[isExternalFilterPresent]="isExternalFilterPresent"
[doesExternalFilterPass]="doesExternalFilterPass"
[rowData]="rowData"
(gridReady)="onGridReady($event)"
>
</ag-grid-angular>
<mat-form-field>
<mat-select
(selectionChange)="someMethod2($event.value)"
multiple
placeholder="customer"
[(ngModel)]="selectedName"
[compareWith]="comparer"
>
<mat-option *ngFor="let el of nameArray" [value]="el">
{{ el.name }}
</mat-option>
</mat-select>
</mat-form-field>
<br>
<mat-form-field>
<mat-select
(selectionChange)="someMethod2($event.value)"
multiple
placeholder="permission"
[(ngModel)]="selectedPermission"
[compareWith]="comparer"
>
<mat-option *ngFor="let el of permissionArray" [value]="el">
{{ el.permission }}
</mat-option>
</mat-select>
</mat-form-field>
<br>