Igx-Grid how to have cell editor as combobox and still have filters on that column #12148
Unanswered
KaushikEDS
asked this question in
Q&A
Replies: 2 comments
-
Hi @hanastasov , |
Beta Was this translation helpful? Give feedback.
0 replies
-
hi @KaushikEDS and @amitmoondra , I was not able to reproduce this behavior on my end using the following steps:
<ng-template igxCellEditor let-cell="cell" >
<igx-combo #dropdownCombo1 type="line"
[itemsMaxHeight]="250"
[data]="localData"
[igxFocus]="true"
[displayKey]="'Country'"
[valueKey]="'EmployeeID'"
[(ngModel)]="cell.editValue">
</igx-combo>
</ng-template>
Result: Could you please update the sample to reproduce the behavior? Or provide another sample where I can investigate it. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We are facing issues with igx-grid component having cell editable.
In igxCellEditor template, I have an igx-combo component. The code for the same given below
<ng-template igxCellEditor let-cell="cell"> <igx-combo #dropdownCombo1 type="line" [itemsMaxHeight]="250" [data]="myData" [igxFocus]="true" [displayKey]="'valueKey'" [valueKey]="'optionValue'" [(ngModel)]="cell.editValue"></igx-combo> </ng-template>
I have implemented this in my grid and am facing issues with filtering.
When I reapply the filters using my state the grid.filteringExpressionTree has the proper value but the grid isn't filtered at all.
Can I have a working example of a cell editor with igx-combo filtering when we reapply filters on that column?
Beta Was this translation helpful? Give feedback.
All reactions