My kendo grid uses the Menu filter mode and has a filter applied to one column as follows:
columns.Bound(c => c.Tech).Width(200).Filterable(f => f.UI("$.proxy(DropDownFilter, { gridName: 'DashboardGrid', field: 'Tech'})").Operators(o => o.ForString(e => e.Clear().IsEqualTo("Is equal to").IsNotEqualTo("Is not equal to"))));
The filter itself works fine but when the value of the Tech cell changes I want the filter to update and show the new value of the Tech cell as a filterable option.
Does anyone know of a way to do this?