Skip to main content
All docs
V23.2
.NET 6.0+
  • The page you are viewing does not exist in the .NET Framework 4.5.2+ platform documentation. This link will take you to the parent topic of the current section.

DxGridModel.PagerNavigationMode Property

Specifies how users navigate between Grid pages.

Namespace: DevExpress.ExpressApp.Blazor.Editors.Models

Assembly: DevExpress.ExpressApp.Blazor.v23.2.dll

NuGet Package: DevExpress.ExpressApp.Blazor

Declaration

public PagerNavigationMode PagerNavigationMode { get; set; }

Property Value

Type Description
PagerNavigationMode

A PagerNavigationMode enumeration value.

Available values:

Name Description
Auto

The input box is displayed if the number of pages is greater than or equal to the SwitchToInputBoxButtonCount (for the Pager) or PagerSwitchToInputBoxButtonCount (for the Grid), or the pager is shown on small devices. Otherwise, numeric buttons are displayed.

InputBox

Users can type a page number in the displayed Go to Page input box to jump to the corresponding page.

NumericButtons

Users can click numeric buttons to navigate between pages.

Remarks

This member is a wrapper for the DxGrid component’s DxGrid.PagerNavigationMode member. Refer to its description for more information.

See Also