Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
345
Paging "out of the box"
posted

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.

  • 28464
    posted

    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>