New to Telerik UI for BlazorStart a free 30-day trial

Grid Filtering Overview

Updated on Jun 4, 2026

This article describes the basics of the filtering functionality of the Telerik Grid for Blazor.

The Grid provides two alternative user interfaces for filtering:

FilterRow

The FilterRow filtering mode renders a row below the column headers, providing a UI where you can fill in the filter criteria. Read more about enabling and fine-tuning the filtering row in the Grid Filter Row article.

FilterMenu

The FilterMenu filter mode renders a button in the column header. Clicking the button opens a popup with filtering options, allowing you to apply two filter criteria, choose a filter operator, and use buttons to apply or clear the filter. Read more about enabling and fine-tuning the filtering menu in the Grid Filter Menu article.

More Filtering Options

In addition to the two main filtering modes, the Grid offers two more features that can enhance the user experience when looking for data.

The ToolBar of the Telerik Grid for Blazor includes a SearchBox that lets users amend filters and search across multiple fields simultaneously.

CheckBoxList

The filter menu can display a list of checkboxes with distinct values from the data, making filtering similar to Excel.

Filter Descriptors

You can get the applied filtering criteria for each filtered field. Use the Grid state or the Grid OnRead event handler to obtain the user input, the filter operator and other filtering properties. Find out how in the Data Operation Descriptors article.

Custom Filtering

There are two approaches to customize the Grid filtering behavior, and you can use them together:

  • Perform the data operations yourself (e.g., by outsourcing them to some API backend or other service) - to do that, use the OnRead event. This will let you fetch only the current page of data for the Grid, instead of pulling the entire data set and storing it in-memory in the view-model.

  • Customize the appearance and behavior of the filters - for that, use the Filter Templates the Grid provides.

Advanced Examples

The following articles and sample projects can be helpful when implementing filtering:

Next Steps

See Also