This is a migrated thread and some comments may be shown as answers.

Positioning of pager controls

1 Answer 89 Views
Grid
This is a migrated thread and some comments may be shown as answers.
markT
Top achievements
Rank 1
markT asked on 17 Sep 2020, 02:40 PM
I'm struggling with layout of the pager controls. I'm trying to get the .k-pager-refresh and .k-pager-info elements to flush left (right next to the pager buttons) instead of flush right. Does anyone have a solution for this?

1 Answer, 1 is accepted

Sort by
0
Ivan Danchev
Telerik team
answered on 21 Sep 2020, 11:43 AM

Hello Mark,

You can customize the pager controls layout through CSS, for example:

<style>
  .k-grid-pager .k-pager-info {
    justify-content: flex-start;
    max-width: 120px;
  }
  
  .k-grid-pager .k-pager-refresh {
    margin-left: 0px;
  }
</style>

Here's a dojo example with the CSS rules above applied: https://dojo.telerik.com/IsihIgUW/2

Regards,
Ivan Danchev
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/.

Tags
Grid
Asked by
markT
Top achievements
Rank 1
Answers by
Ivan Danchev
Telerik team
Share this question
or