I have added the paging behavior and I am trying to get it to look a specific way and I am not sure where to begin.
I would like it to display 5 pages at a time, have a first/last and a next/previous.
[First] >> 1 2 3 4 5 << [Last]
[First] >> 3 4 5 6 7 << [Last]
So even if there are more than 5 pages the middle [bold] page will be the current page and it will only show 5 pages. If they clicked on 7, 7 would move to the middle and it would be 5 6 7 8 9. I checked all of the built in options and couldn't find anything like this.
Anyone know how to make the paging behavior look like above?
Anyone able to help? Am I not supplying enough information? Can this be done?
Having 1 2 3 4 5 6 7 8 9 10 11 12 13 14 all the way up to 64 makes the data grid really not looking good. And only allowing a previous/next to clean it up doesn't really make paging through 64 pages user friendly.
You could probably create a custom paging control to use to get the behaviour you want. There is a custom paging sample which you could use as a start.
Hello All,
The properties that would help achieving this paging are: QuickPages -it determines how many pages are available at each side of the current page. Default is 0 meaning that QuickPages feature is disabled. A value of 2 will display a total of 5 pages to choose from. FirstPageText - The text of the first pager link. LastPageText- The text of the last pager link You could refer to http://help.infragistics.com/NetAdvantage/ASPNET/2013.1/CLR4.0/?page=WebDropDown_Paging.htmlfor detailed information about paging functionality as well as custom paging http://help.infragistics.com/NetAdvantage/ASPNET/2013.1/CLR4.0/?page=WebDataGrid_Using_Custom_Paging_Template.html Or look into our online samples and find the custom paging, which you would like: http://es.infragistics.com/products/aspnet/sample/data-grid/paging-basic-features http://es.infragistics.com/products/aspnet/sample/data-grid/paging-custom-pager-template Thank you for choosing Infragistics components!