DxDataGrid<T>.PagerVisibleNumericButtonCount Property
Specifies the maximum number of numeric buttons the Data Grid’s pager displays simultaneously in NumericButtons mode.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v22.1.dll
Declaration
[DefaultValue(5)]
[Parameter]
public int PagerVisibleNumericButtonCount { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Int32 | 5 |
An integer number that specifies the maximum number of simultaneously displayed numeric buttons. |
Remarks
Important
The Data Grid was moved to maintenance support mode. No new features/capabilities will be added to this component. We recommend that you migrate to the Grid component.
Use the PagerVisibleNumericButtonCount property to specify how many numeric buttons should be displayed when the Data Grid pager 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 PageIndex value is specified) or numeric buttons from 1 to the PagerVisibleNumericButtonCount value. To navigate to other numeric buttons, a user should use navigation buttons.
<DxDataGrid Data="@DataSource"
PageCount="100"
PageIndex="50"
PagerVisibleNumericButtonCount="7"
PagerNavigationMode="PagerNavigationMode.NumericButtons">
</DxDataGrid>
If all the numeric buttons are displayed (i.e., PageCount is less or equal to the PagerVisibleNumericButtonCount
), the pager’s navigation buttons are hidden.
<DxDataGrid Data="@DataSource"
PageCount="10"
PageIndex="2"
PagerVisibleNumericButtonCount="10">
</DxDataGrid>