Hi
i have a problem in paging in infragistics ultrawebgrid. i select the page size of the grid from the dropdownlist and in the selected index change i assign the page size. when i select the page size as 20 or 50 it works fine. but if i select above 50, it still shows 50 records per page and have link to the next page. may i nkow if there is any limit to page size or how can i get the 100 records on selecting 100 as page size.
Shilpa
I found one way to circumvent it.Set UltraWebGrid.DisplayLayout.RowsRange = 0
But this will defeat the purpose of LoadOnDemand.
Can anyone please answer the question of how to get more than 50 records to display and not just put in a link to someone who is having performance problems.
Pls find below link
https://es.infragistics.com/community/forums/f/retired-products-and-controls/36697/ultrawebgrid-custom-paging
I have exactly the same problem here. I have 200 records for this table and from the dropdownlist, I select 50 as the page size. So all the records span across 4 pages with 50 records on each page. No problem.
But when I select any value larger than 50 as my page size, say 100, 50 records are still being shown but this time the pages has been reduced to 2 pages (which makes sense since 200 divided by 100 is 2). The UltraWebGrid actually acknowledges the change of page size to 100 since there are only 2 pages in the pager but failed to display more than 50 records on a page.
Can anyone please help with this?