DxGrid.DataColumnFilterMenuTemplate Property
Specifies a common template used to display all column filter menus in the Grid.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.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.
Implements
See Also