Skip to main content
Tab

NewsControlPagerSettings.EndlessPagingMode Property

Gets or sets a value that defines endless paging mode.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(DataViewEndlessPagingMode.Disabled)]
public DataViewEndlessPagingMode EndlessPagingMode { get; set; }

Property Value

Type Default Description
DataViewEndlessPagingMode Disabled

One of the DataViewEndlessPagingMode enumeration values.

Available values:

Name Description
Disabled

Endless paging is not used. The pager is displayed.

OnClick

Items are loaded on a ‘Show more items…’ button click.

OnScroll

Items are loaded on page scrolling.

Property Paths

You can access this nested property as listed below:

Object Type Path to EndlessPagingMode
ASPxNewsControl
.PagerSettings .EndlessPagingMode

Remarks

By default, the EndlessPagingMode property is set to Disabled and a news control displays a pager. To enable endless paging, set the EndlessPagingMode property to one of the following values.

  • OnClick - items are loaded on a ‘Show more items’ button click.
  • OnScroll - items are loaded on page scrolling.
See Also