Datagrid pager display issue

hi,

I am using DataGrid with PagingSummaryTemplate. I am facing 2 issues.

  1. If my grid's PageSizeOptions has values like 100, 200, display is getting truncated. This is a reporting app. So the per page count is always going to be atleast 100. How to ensure that value displayed is not truncated.

  1. I want to show the drop down list at the center before the pagination numbers start. How can this be done?

Thank you!

You can use this style to set desired width for the pager DropDown:

<style>
    .rz-pager .rz-dropdown {
       width: 150px;
    }
</style>

I'm afraid that this is not possible.

@enchev thanks for your input on item #1. Worked well.

For relocating the pageSize option, shall I look at submitting a PR, where pageSize option location is made configurable for the datagrid via parameter that can be internally passed to RadzenPager component to decide if dropdownlist should be rendered last or first, with last being default to retain current behavior?