Back to Devexpress

PagerNavigationMode Enum

blazor-devexpress-dot-blazor-3ae48a75.md

latest1.9 KB
Original Source

PagerNavigationMode Enum

Lists values that specify navigation modes for the Pager and Grid components.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
public enum PagerNavigationMode

Members

NameDescription
Auto

The input box is displayed if the total number of pages is greater than or equal to the SwitchToInputBoxButtonCount (for the Pager) or PagerSwitchToInputBoxButtonCount (for the Grid or TreeList), 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.

|

The following properties accept/return PagerNavigationMode values:

Remarks

The following code snippet displays the Go to Page input box within the DxPager.

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

See Also

DevExpress.Blazor Namespace