Skip to main content
A newer version of this page is available. .

PagerNavigationMode Enum

Lists the values that specify the Pager‘s and the Data Grid‘s navigation modes.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v21.1.dll

NuGet Package: DevExpress.Blazor

Declaration

public enum PagerNavigationMode

Members

Name Description
Auto

If the number of pages is greater or equal to the SwitchToInputBoxButtonCount (for the Pager) or PagerSwitchToInputBoxButtonCount (for the Data Grid) value or the Pager component is shown on small devices, the Go to Page input box is displayed. 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.

Related API Members

The following properties accept/return PagerNavigationMode values:

Remarks

The code below demonstrates how to display the Go to Page input box within the DxPager.

<DxPager PageCount="1000"
         ActivePageIndex="5"
         NavigationMode="PagerNavigationMode.InputBox">
</DxPager>

Pager GoToPage

Run Demo: Pager - Go to Page

See Also