Hello, I am currently facing an issue with the "Filter" button in the filter menu popup of my grid.
I implemented a grid with a customized filter menu where I have set the [extra] option to false so I have to fill only one input, as following:
<
kendo-grid-column
field
=
"ProductName"
title
=
"Product Name"
>
<
ng-template
kendoGridFilterMenuTemplate let-filter
let-column
=
"column"
let-filterService
=
"filterService"
>
<
kendo-grid-string-filter-menu
[extra]="false" [column]="column" [filter]="filter" [filterService]="filterService">
</
kendo-grid-string-filter-menu
>
</
ng-template
>
</
kendo-grid-column
>
I used the same code to create other grids in my application and I am not facing this issue. Here when I open the filter menu popin, the "Filter" button is first disabled which is normal as I must type something in the filter input to enable it, but even if I do, the "Filter" button stays disabled, and I couldn't figure out what am I missing.
Is there any generic bad implementation that can cause this behavior and that I can fix? Or can I at least make the "Filter" button always clickable (I tried to remove the [disabled] option from the template in the kendo-grid-string-filter-menu file but I still have the same issue)?
Thank you in advance for you reply and tell me if you need some further informations.
Chahid