DataPager Component
The DataPager component provides paging functionality for data-bound controls.
It supports numeric page buttons and next/previous navigation.
DataPager with Numeric Buttons
| ID | Name | Price | Category |
|---|---|---|---|
| 1 | Product 1 | ¤10.99 | Software |
| 2 | Product 2 | ¤11.99 | Hardware |
| 3 | Product 3 | ¤12.99 | Software |
Code:
<DataPager TotalRowCount="@totalRows"
PageSize="3"
PageIndex="@pageIndex"
PageIndexChanged="HandlePageChanged"
Mode="PagerButtons.NumericFirstLast" />