Dear Syncfusion Team!
I have a grid, in which I added a clear filter button to the toolbar, and also added a few input filters in ng-template like this
<ng-template #filterTemplate let-data>
<ejs-textbox [showClearButton]="true" [(ngModel)]="data[data.column.field]" autoComplete="off"
cssClass="e-input" (keyup)="onFilterKeyUp($event, data)" (blur)="onFilterBlur($event, data)">ejs-textbox>
ng-template>
I need to implement filter inputs like this because applying filters on "tabbing" is not on option (only OnEnter and Immediate)
But when I execute
this.grid.clearFiltering();
All the inputs remain the same, the filter texts don't get cleared.
I also noticed that if I log the grid.filterModule, the values stored in it don't get cleared
What can I do about this issue?
Thank you
David