Please forgive me- I'm an Infragistics newb.
Does the UltraWebGrid (for .NET 3.5) support paging of a single bound DataSet?
That is, I want to bind a DataSet to the grid, and then have the grid page itself (either totally on the client side or via postbacks) rather than having to implement routines to provide different views of the data. It is fine if the grid uses the order in which the rows are laid out in the DataSet as the ordering to use when paging.
Hello,
Yes, absolutely, this is controlled by the Pager section of the display layout of the grid, e.g.
<displaylayout allowcolsizingdefault="Free" allowcolumnmovingdefault="OnServer" <pager minimumpagesfordisplay="2" pagesize="3" AllowPaging="true"> <PagerStyle BackColor="LightGray" BorderStyle="Solid" BorderWidth="1px"> <borderdetails colorleft="White" colortop="White" widthleft="1px" widthtop="1px" /> </PagerStyle> </pager>