How can we customize kendo grid filter options "Is empty","Is not empty" etc like the code which is mentioned below.
.Filterable(filter => filter.Mode(GridFilterMode.Menu).Extra(false)
.Operators(oper => oper.ForString(str => str.Clear()
.IsEqualTo("Is equal to")
.Contains("Contains")
.StartsWith("Starts with")
)))