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

Paging panel

When paging is enabled in RadVirtualGrid, 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.

WinForms RadVirtualGrid 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 RadVirtualGrid.TableElement.PagingPanelElement. Here is what options you have:

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

    WinForms RadVirtualGrid NumericButtonsCount

  • ShowButtonsStripElement: Controls whether the buttons panel is visible.

    WinForms RadVirtualGrid ShowButtonsStripElement

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

    WinForms RadVirtualGrid ShowFirstButton

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

    WinForms RadVirtualGrid 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 RadVirtualGrid 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 RadVirtualGrid ShowFastForwardButton

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

    WinForms RadVirtualGrid ShowNextButton

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

    WinForms RadVirtualGrid ShowLastButton

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

    WinForms RadVirtualGrid ShowNumericalButtons

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

    WinForms RadVirtualGrid ShowTextBoxStripElement

See Also

In this article