New to Telerik UI for WinForms? Download free 30-day trial

Paging Panel

When paging is enabled in RadGridView, a panel is added to the bottom of the grid view element. It allows users to navigate back and forth over the pages or jump directly to a desired page.

Paging functionality in RadGridView was introduced in R1 2014 (version 2014.1.226).

WinForms RadGridView Paging Panel

There are a number of properties, which allow you to customize the paging panel to your specific needs. You can access these properties through the RadGridView.GridViewElement.PagingPanelElement. Here is what options you have:

  • NumericButtonsCount: Controls how many buttons for navigation to concrete pages there are on the panel.

    WinForms RadGridView NumericButtonsCount

  • ShowButtonsStripElement: Controls whether the buttons panel is visible.

    WinForms RadGridView ShowButtonsStripElement

  • ShowFirstButton: Controls whether the button navigating to the first page is visible.

    WinForms RadGridView ShowFirstButton

  • ShowPreviousButton: Controls whether the button navigating to the previous page is visible.

    WinForms RadGridView ShowPreviousButton

  • ShowFastBackButton: Controls whether the button with three dots is visible. This button moves the grid back X number of pages, where X equals the number of numeric buttons.

    WinForms RadGridView ShowFastBackButton

  • ShowFastForwardButton: Controls whether the button with three dots is visible. This button moves the grid forth X number of pages, where X equals the number of numeric buttons.

    WinForms RadGridView ShowFastForwardButton

  • ShowNextButton: Controls whether the button navigating to the next page is visible.

    WinForms RadGridView ShowNextButton

  • ShowLastButton: Controls whether the button navigating to the last page is visible.

    WinForms RadGridView ShowLastButton

  • ShowNumericalButtons: Controls whether the buttons navigating to concrete pages are visible.

    WinFroms RadGridView ShowNumericalButtons

  • ShowTextBoxStripElement: Controls whether the panel allowing users to jump to a concrete page is visible.

    WinForms RadGridView ShowTextBoxStripElement

See Also

In this article