Skip to main content

ASPxTreeList.PageSizeChanged Event

Fires on the server side after a page size (amount of rows per a page) is changed by end-user interactions.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public event EventHandler PageSizeChanged

Event Data

The PageSizeChanged event's data class is EventArgs.

Remarks

Page size, i.e., the maximum number of rows that can be displayed on a page, is specified by the TreeListSettingsPager.PageSize property.

End-users can change the page size using the page size item of the embedded pager. Additionally, to display all rows, the All navigation button can be used.

The PageSizeChanged event fires on the server side after the page size is changed by end-user interactions and allows you to perform any custom actions.

Note

When ASPxTreeView displays all rows, the TreeListSettingsPager.PageSize property returns the last specified numerical value.

See Also