ComponentOne GridView for ASP.NET WebForms
C1.Web.Wijmo.Controls.4 Assembly / C1.Web.Wijmo.Controls.C1GridView Namespace / VirtualizationMode Enumeration

In This Topic
    VirtualizationMode Enumeration
    In This Topic
    Determines the virtualization mode.
    Syntax
    'Declaration
     
    Public Enum VirtualizationMode 
       Inherits System.Enum
    public enum VirtualizationMode : System.Enum 
    Members
    MemberDescription
    BothBoth Rows and Columns modes are used.
    ColumnsColumns are rendered on demand.
    NoneVirtual scrolling is not used.
    RowsRows are rendered on demand.
    Remarks

    Columns

    Cannot be used at the same time when grouping or band columns are used.

    Rows

    There are two modes of rows virtual scrolling determined by the C1.Web.Wijmo.Controls.C1GridView.C1GridView.CallbackSettings property. The first one is static, when all the data are available to the client but rows are rendered when scrolled. The second one is dynamic, set by the C1.Web.Wijmo.Controls.C1GridView.CallbackAction.Scrolling value. New portions of data are requested from server when need to be rendered.

    Static mode cannot be used at the same time when paging, fixed rows or columns merging are used. Dynamic mode cannot work with columns grouping in addition.

    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.Web.Wijmo.Controls.C1GridView.VirtualizationMode

    See Also