Skip to main content

IGrid.FooterDisplayMode Property

Specifies when to display the footer in the Grid.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(GridFooterDisplayMode.Auto)]
GridFooterDisplayMode FooterDisplayMode { get; set; }

Property Value

Type Default Description
GridFooterDisplayMode Auto

A GridFooterDisplayMode enumeration value.

Available values:

Name Description
Auto

The footer is visible if it displays total summary values or your custom footer template. Otherwise, the footer is hidden.

Never

The footer is always hidden even if it contains total summary values or if you specify a custom footer template.

Always

The footer is always visible regardless of its content.

Remarks

Refer to the FooterDisplayMode property description for more information and an example.

See Also