Skip to main content
A newer version of this page is available. .
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.v18.2.dll

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.

Property Paths

You can access this nested property as listed below:

Show 16 property paths
Library Object Type Path to AlwaysShowPager
ASP.NET Bootstrap Controls BootstrapCardView
.SettingsPager.AlwaysShowPager
BootstrapGridView
.SettingsPager.AlwaysShowPager
ASP.NET Web Forms Controls ASPxCardView
.SettingsPager.AlwaysShowPager
ASPxGridView
.SettingsPager.AlwaysShowPager
ASPxVerticalGrid
.SettingsPager.AlwaysShowPager
GridViewProperties
.SettingsPager.AlwaysShowPager
CardViewSettings
.SettingsPager.AlwaysShowPager
CardViewSettings<CardType>
.SettingsPager.AlwaysShowPager
GridViewSettings
.SettingsPager.AlwaysShowPager
GridViewSettings<RowType>
.SettingsPager.AlwaysShowPager
MVCxCardView
.SettingsPager.AlwaysShowPager
MVCxGridView
.SettingsPager.AlwaysShowPager
MVCxGridViewProperties
.SettingsPager.AlwaysShowPager
MVCxVerticalGrid
.SettingsPager.AlwaysShowPager
VerticalGridSettings
.SettingsPager.AlwaysShowPager
VerticalGridSettings<ColumnType>
.SettingsPager.AlwaysShowPager

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 - Getting 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 - Getting 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 - Getting Started

See Also