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

BootstrapPager.PageSizeItemSettings Property

Gets the Page Size Item element’s settings.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v19.1.dll

Declaration

[PersistenceMode(PersistenceMode.InnerProperty)]
public BootstrapPageSizeItemSettings PageSizeItemSettings { get; }

Property Value

Type Description
BootstrapPageSizeItemSettings

A BootstrapPageSizeItemSettings object that contains settings.

Remarks

Use the PageSizeItemSettings property to access and customize the settings that relate to page size item.

Example

This example demonstrates the basic functionality of the Pager control.

The image below shows the result:

BootstrapGrid_Pager_Default

<dx:BootstrapPager runat="server" NumericButtonCount="8" ItemCount="91">
    <CssClasses PageNumber="d-none d-sm-block" Ellipsis="d-none d-sm-block" Summary="d-none d-xl-block" />
    <PageSizeItemSettings Visible="True"></PageSizeItemSettings>
</dx:BootstrapPager>
See Also