Remove option on kendo boolean Filter

614 Views Asked by At

Im quite new to kendo and Im wondering if there is a way to remove and rename parts of the boolean-filter-cell. Picture to show what I mean

I would like to remove the Is True option and rename the Is False.

Is this possible to do?

2

There are 2 best solutions below

0
Ludwig On BEST ANSWER

The best way to do that is to use a custom filter component (see documentation here).

I have modified the Stackblitz from the documentation to show a custom filter for a boolean column:

https://stackblitz.com/edit/angular-m1ugm3

Have a look at the dropdownlist-filter.component.ts

0
GaloisGirl On