RadGrid for ASP.NET

RadGrid Send comments on this topic.
GridChildLoadMode Enumeration
See Also  
Telerik.WebControls Namespace : GridChildLoadMode Enumeration


Defines the possible modes for loading the child items when RadGrid displays hierarchy.  

 

Namespace: Telerik.WebControls
Assembly: RadGrid (in RadGrid.dll)

Syntax

Visual Basic (Declaration) 
Public Enum GridChildLoadMode 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As GridChildLoadMode
C# 
public enum GridChildLoadMode : Enum 

Members

MemberDescription
ServerBind All child GridTableViews will be bound immediately when DataBind occurs for a parent GridTableView or RadGrid.
ServerOnDemand DataBind of a child GridTableView would only take place when an item is Expanded . This is the default value of GridTableView.HierarchyLoadMode
ClientThis mode is similar to ServerBind, but items are expanded client-side, using JavaScript manipulations, instead of postback to the server.

In order to use client-side hierarchy expand, you will need to set also AllowExpandCollapse to true.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Telerik.WebControls.GridChildLoadMode

Requirements

Namespace: Telerik.WebControls

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

Assembly: RadGrid (in RadGrid.dll)

See Also