DxPager.VisibleNumericButtonCount Property
Specifies the maximum number of numeric buttons the Pager displays simultaneously in NumericButtons
mode.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(5)]
[Parameter]
public int VisibleNumericButtonCount { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Int32 | 5 | An integer number that specifies the maximum number of simultaneously displayed numeric buttons. |
Remarks
Use the VisibleNumericButtonCount
property to specify how many numeric buttons should be displayed when the Pager component is in NumericButtons mode. When the component is rendered for the first time, it displays a range of numeric buttons that includes the active page (if the ActivePageIndex value is specified) or numeric buttons from 1
to the VisibleNumericButtonCount
value. To navigate to other numeric buttons, a user should use navigation buttons.
<DxPager PageCount="100"
ActivePageIndex="50"
VisibleNumericButtonCount="7"
NavigationMode="PagerNavigationMode.NumericButtons">
</DxPager>
If all the numeric buttons are displayed (i.e., PageCount is less or equal to the VisibleNumericButtonCount
), the Pager’s navigation buttons are hidden.
<DxPager PageCount="10"
ActivePageIndex="2"
VisibleNumericButtonCount="10">
</DxPager>