Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxTreeList.PagerPosition Property

Specifies the pager position.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[DefaultValue(TreeListPagerPosition.Bottom)]
[Parameter]
public TreeListPagerPosition PagerPosition { get; set; }

#Property Value

Type Default Description
TreeListPagerPosition Bottom

An enumeration value.

Available values:

Name Description
Bottom

The TreeList displays the pager at the bottom.

Top

The TreeList displays the pager at the top.

TopAndBottom

The TreeList displays the pager at the top and at the bottom.

#Remarks

The TreeList splits a large amount of data rows across multiple pages and displays the pager at the bottom of the TreeList.

Blazor TreeList Pager Position Bottom

Use the PagerPosition property to show the pager at the top of the TreeList (TreeListPagerPosition.Top) or at both the top and bottom (TreeListPagerPosition.TopAndBottom).

@inject EmployeeTaskService EmployeeTaskService

<DxTreeList Data="TreeListData"
            KeyFieldName="Id"
            ParentKeyFieldName="ParentId"
            PageSize="4"
            PagerPosition="TreeListPagerPosition.TopAndBottom">
    <Columns>
        <DxTreeListDataColumn FieldName="Name" Caption="Task" />
        <DxTreeListDataColumn FieldName="EmployeeName" />
        <DxTreeListDataColumn FieldName="StartDate" />
        <DxTreeListDataColumn FieldName="DueDate" />
    </Columns>
</DxTreeList>

@code {
    List<EmployeeTask> TreeListData { get; set; }

    protected override void OnInitialized() {
        TreeListData = EmployeeTaskService.GenerateData();
    }
}

Blazor TreeList Page Size Selector

Run Demo: TreeList - Paging

For more information about paging in the TreeList component, refer to the following topic: Paging in Blazor TreeList.

#Implements

See Also