I am trying to dynamically add mesh filters in my view using the html helper using the data source configuration, as this example is from the kendo documentation :
@(Html.Kendo().Grid<Product>() .Name("grid") .DataSource(dataSource => dataSource .Ajax() .Read(read => read.Action("Products_Read", "Home")) .Filter(filters => { if (someCondition){
Filters are added, but filterdescriptor.Value is always null in each case (members and operator are ok).
Any help is greatly appreciated. Thank you --Berry
source share