New to Telerik UI for BlazorStart a free 30-day trial

Definition

Constructors

C#
public TablePagerSettings()

Methods

C#
protected override Task OnInitializedAsync()
Returns:

Task

Overrides: ComponentBase.OnInitializedAsync()

C#
protected override void OnParametersSet()

Overrides: ComponentBase.OnParametersSet()

C#
public override Task SetParametersAsync(ParameterView parameters)
Parameters:parametersParameterViewReturns:

Task

Overrides: ComponentBase.SetParametersAsync(ParameterView)

Properties

Sets the maximum number of page navigation buttons to display at once. Only applies when InputType is set to Buttons.

C#
[Parameter]
public int ButtonCount { get; set; }

Controls how users navigate between pages. Use Buttons for clickable numbered page buttons with previous/next navigation, or Input for a text input field where users can type specific page numbers.

C#
[Parameter]
public PagerInputType InputType { get; set; }

Sets the available page size options in the pager dropdown. Users can choose how many items to display per page. Use null values to include an "All" option that shows all items on one page.

C#
[Parameter]
public List<int?> PageSizes { get; set; }

Sets where the pager appears relative to the data. Use Top to show pagination controls above the grid data, or Bottom to show them below the grid data (default position).

C#
[Parameter]
public PagerPosition Position { get; set; }

Enables responsive design that automatically adjusts pager layout and controls based on screen size for better mobile experience.

C#
[Parameter]
public bool Responsive { get; set; }