FileExplorer Grid Pagerstyle

1 Answer 35 Views
Grid
Fit2Page
Top achievements
Rank 2
Iron
Iron
Iron
Fit2Page asked on 29 Jul 2021, 08:14 AM

Hi,

 

Is it possible to set the FileExplorer's Grid Pagerstyle to NextPrevNumeric instead of the default slider?

 

Marc

1 Answer, 1 is accepted

Sort by
0
Accepted
Vessy
Telerik team
answered on 29 Jul 2021, 11:03 AM

Hi Marc,

You can do it by defining the Grid.PagerStyle.Mode in the code behind like follows:

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            FileExplorer.Grid.PagerStyle.Mode = Telerik.Web.UI.GridPagerMode.NextPrevNumericAndAdvanced;
        }
    }

 

Regards,
Vessy
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Fit2Page
Top achievements
Rank 2
Iron
Iron
Iron
commented on 30 Jul 2021, 08:06 AM

Thanks Vessy!
Vessy
Telerik team
commented on 30 Jul 2021, 09:00 AM

You are welcome, Marc!
Tags
Grid
Asked by
Fit2Page
Top achievements
Rank 2
Iron
Iron
Iron
Answers by
Vessy
Telerik team
Share this question
or