New to Telerik UI for ASP.NET MVC? Start a free 30-day trial
Filters
Updated over 6 months ago
To request filtered data on initial load, configure the filters with the FilterDescriptorFactory. the ToDataSourceResult() extension method will return only the filtered data in the response object.
- The
Filtermethod sets the initial filters.
Razor
@(Html.Kendo().DataSource<ProductViewModel>()
.Name("myDataSource")
.Ajax(datasource => datasource
.Read(read => read.Action("Products_Read", "Home"))
.Filter(filters =>
{
//Show products whose ProductName property contains a "C".
filters.Add(product => product.ProductName).Contains("C");
//Show products whose UnitsInStock is greater than 10.
filters.Add(product => product.UnitsInStock).IsGreaterThan(10);
})
)
)