Hi,
I have a two band hierarchical web-grid that is bound to a two table dataset. I have the paging option switched on, and set to show 10 records per page. The grid loads perfectly. I can delete rows without any dramas. However, if I have more than 10 records returned, and select the next page, the next page loads with same data as the first page.
I thought that the inbuilt paging functionality would be able to handle the paging using the dataset provided. Is there something else I need to do to ensure that the next ten records are loaded into the grid when the selected page is changed?
Thanks,
do you catch the PageIndexChanged event?
It should be something like this:
UltraWebGrid1.DisplayLayout.Pager.CurrentPageIndex = e.NewPageIndex; BindGrid();}
-Nick