Filter in Razor Pages
Razor Pages is an alternative to the MVC pattern that makes page-focused coding easier and more productive. This approach consists of a cshtml file and a cshtml.cs file (by design, the two files have the same name).
You can seamlessly integrate the Telerik UI Filter for ASP.NET Core in Razor Pages applications.
This article describes how to configure the Filter component in a Razor Pages scenario.
For the complete project, refer to the Filter in Razor Pages example.
Getting Started
To bind the Filter DataSource to a data set received from a remote endpoint within a Razor Pages application, follow the next steps:
-
Specify the Read request URL in the
DataSourceconfiguration. The URL must refer to the method name in thePageModel.Razor@page @IndexModel @(Html.Kendo().DataSource<CustomerViewModel>() .Name("dataSource1") .Ajax(t => { t.Read(r=>r.Url("/Index?handler=Customers").Data("forgeryToken")); t.Model(model => model.Id(p => p.CustomerID)); t.PageSize(20); }) ) @(Html.Kendo().Filter<CustomerViewModel>() .Name("filter") .ApplyButton(true) .ExpressionPreview(true) .Fields(f => { f.Add(p=>p.CustomerID); f.Add(p=>p.Position); f.Add(p=>p.CompanyName); f.Add(p=>p.Country); }) .FilterExpression(f => { f.Add(p => p.Position).IsEqualTo("Sales Representative"); }) .DataSource("dataSource1") ) -
Add an
AntiForgeryTokenat the top of the page.Razor@inject Microsoft.AspNetCore.Antiforgery.IAntiforgery Xsrf @Html.AntiForgeryToken() -
Send the
AntiForgeryTokenwith the Read request.JavaScript<script> function forgeryToken() { return kendo.antiForgeryTokens(); } </script>Additional parameters can also be supplied.
JavaScript<script> function forgeryToken() { return { __RequestVerificationToken: kendo.antiForgeryTokens().__RequestVerificationToken, additionalParameter: "test" } } </script> -
Within the
cshtml.csfile, add a handler method for the Read operation that returns the dataset.C#public static IList<CustomerViewModel> Customers; public static IList<string> Countries = new List<string>() {"UK", "Germany", "Italy", "Venezuela", "China", "Bulgaria", "USA" }; public static IList<string> Positions = new List<string>() { "Sales Agent", "Sales Representative", "Owner", "Order Administrator", "Marketing Manager", "Accounting Manager" }; public void OnGet() { if (Customers == null) { // Populate the "Customers" collection with data. Customers = new List<CustomerViewModel>(); var rand = new Random(); for (int i = 1; i < 40; i++) { Customers.Add(new CustomerViewModel() { CustomerID=i, CompanyName="Company " + i, Position = Positions[rand.Next(0,5)], Country = Countries[rand.Next(0, 6)], }); } } } public JsonResult OnPostCustomers([DataSourceRequest]DataSourceRequest request) { return new JsonResult(Customers.ToDataSourceResult(request)); }