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
80
Alter the space between Prev & Next in the ultrawebgrid pager control
posted

Hi,

We are using infragistics ultrawebgrid 10.3. I enabled paging and works fine. But I need to alter the space between the texts 'PREV' and 'NEXT' since our customers are using a touch screen & this minimal spacing will be troublesome since they may not be able to click the right one.

Should I use custom paging just for this small thing? Please advice. Is there some properties that I can alter? I tried pager.nextText.padleft but that does not alter the space. Thanks

Parents
  • 37874
    posted

    Hello prathi84,

    You can do this using CSS. Just get the links in pager and set margin rules:

    <style type="text/css">
        td#UltraWebGrid1_pager a { margin: 20px; }
    </style>

    Also, keep in mind that when you are on the first or last page of the grid, the Prev or respectively Next button wouldn't be а link.

    Please let me know if you need any further assistance with the matter.

Reply Children
No Data