Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
125
Scrollbar for paging control in iggrid
posted

We are using iggrid and the paging control in the grid is getting wrapped when the width of the page layout is small. Do we have an option to apply a scrollbar for the paging control alone?

Attached the screenshot, please find.

Parents
  • 23953
    Offline posted

    Hello Prasath,

    You can choose between two different approaches:

    1. Remove some of the paging interface using the following igGridPaging options: showPagerRecordsLabel, showFirstLastPages, showPrevNextPages
    2. Use CSS to make the horizontal scrollbar - here are the CSS rules which assume that the grid has ID = 'grid2'

    <style>

     #grid2_pager {

    white-space: nowrap;

    overflow-x: scroll;

     }

     #grid2_pager>div.ui-iggrid-paging {

    display: inline-block;

    width: 400px;

    float: none;

     }

     #grid2_pager_label {

    float: none;

    padding-right: 20px;

     }

    </style>

     

    Both of the approaches are demonstrated in the attached sample.

     

    Best regards,
    Martin Pavlov
    Infragistics, Inc.

    igGridPaging_horizontal_scrollbar.zip
Reply Children