Skip to main content
A newer version of this page is available. .
All docs
V23.1

DxGrid.DataColumnFilterMenuTemplate Property

Specifies a common template used to display all column filter menus in the Grid.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public RenderFragment<GridDataColumnFilterMenuTemplateContext> DataColumnFilterMenuTemplate { get; set; }

Property Value

Type Description
RenderFragment<GridDataColumnFilterMenuTemplateContext>

The template content.

Remarks

Specify the DataColumnFilterMenuTemplate to define a common template for drop-down filter menus in Grid column headers. To define a template for an individual data column, use the column’s FilterMenuTemplate property.

For more information about templates in the Grid component, refer to the following topic: Templates in Blazor Grid.

See Also