New to Telerik UI for ASP.NET Core? Download free 30-day trial

Responsive Design

The Pager component for ASP.NET Core is responsive by default. To disable the responsive behavior and have all of its elements visible at all times use the Responsive() method and pass false as a parameter.

Visible Elements

The Pager widget determines which internal elements to render based on its width. When the Pager width is greater than or equal to 600 pixels, all elements are visible:

  • Page Sizes Dropdown
  • Numeric Page Number Buttons or a Numeric Input if the pager is an Input one.
  • Info element

Breaking Points

When the Pager width is greater than or equal to 600 pixels, all elements are visible:

UI for ASP.NET Core A Pager widget at over 600px resolution

When the Pager width is greater than 480 and less than 600 pixels, the label showing the current paging information is hidden:

UI for ASP.NET Core A Pager widget between 480 and 600px resolution

When the Pager width is greater than 360 and less than 480 pixels, the current page is represented by a native <select/> element. The pageSizes dropdown and the label showing the current paging information are hidden.

UI for ASP.NET Core A Pager widget between 360 and 480px resolution

When the Pager width is less than 360 pixels, the current page is represented by a native <select/> element. The pageSizes dropdown and the label showing the current paging information are hidden.

UI for ASP.NET Core A Pager widget under 360 pixels

See Also

In this article