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
Hi prathi84,
If you need any further assistance with the matter, please let me know.
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.