Skip to main content
Tab

ASPxGridPagerSettings.AlwaysShowPager Property

Gets or sets whether the pager is displayed in the control when there is only one page.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(false)]
public bool AlwaysShowPager { get; set; }

Property Value

Type Default Description
Boolean false

true, to display the pager in the control when there is only one page; otherwise, false.

Remarks

Find control-specific information (for ASPxGridView, ASPxCardView or ASPxVerticalGrid) in the sections below.

ASPxGridView

By default, the pager is not displayed in the ASPxGridView if there is only one page. Set the AlwaysShowPager property to true to display the pager.

Setting the AlwaysShowPager property has no effect if the page-mode navigation is disabled (the ASPxGridViewPagerSettings.Mode property is set to ShowAllRecords).

Grid View - Get Started

ASPxCardView

By default, the pager is not displayed in the ASPxCardView if there is only one page. Set the AlwaysShowPager property to true to display the pager.

Setting the AlwaysShowPager property has no effect if the page-mode navigation is disabled (the ASPxCardViewPagerSettings.Mode property is set to ShowAllRecords).

Card View - Get Started

ASPxVerticalGrid

By default, the pager is not displayed in the ASPxVerticalGrid if there is only one page. Set the AlwaysShowPager property to true to display the pager.

Setting the AlwaysShowPager property has no effect if the page-mode navigation is disabled (the ASPxVerticalGridPagerSettings.Mode property is set to ShowAllRecords).

Vertical Grid - Get Started

See Also