With the original RADGrid, you could do paging and scrolling in the same grid as at the following URL:
http://www.kimballmidwest.com/Catalog/MSDS.aspx
So the grid is showing 100 items in a scrollable "window" where only 20 or so are visible at one time. Using the pager then just shows the next or previous 100 items in the grid.
I really don't want to use Ajax virtual scroll paging as it is jumpy and probably would not be optimal on a dial-up connection (although I haven't tested this ... so maybe not). Anyway the original behavior seemed intuitive and I have recevied no complaints that users can figure out how to use the pager controls.
Is there anyway to get this to work this way in the new grid?
As always, any help would be greatly appreciated.
Thanks,
Kevin
http://www.kimballmidwest.com/Catalog/MSDS.aspx
So the grid is showing 100 items in a scrollable "window" where only 20 or so are visible at one time. Using the pager then just shows the next or previous 100 items in the grid.
<telerik:RadGrid ID="gridResults" runat="server" AutoGenerateColumns="False" Height="400px" Width="99%"
Skin="WebBlue" AllowSorting="True" AllowPaging="True" PageSize="100">
<ClientSettings>
<Scrolling AllowScroll="true" SaveScrollPosition="true" UseStaticHeaders="true" ScrollHeight="250px"/>
</ClientSettings>
<PagerStyle Mode="NextPrevAndNumeric" AlwaysVisible="True"/>
</telerik:RadGrid>
I really don't want to use Ajax virtual scroll paging as it is jumpy and probably would not be optimal on a dial-up connection (although I haven't tested this ... so maybe not). Anyway the original behavior seemed intuitive and I have recevied no complaints that users can figure out how to use the pager controls.
Is there anyway to get this to work this way in the new grid?
As always, any help would be greatly appreciated.
Thanks,
Kevin