RadGrid for ASP.NET

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


Specifies where the grouping will be handled. There are two options:

  • Server-side - GridTableView.GroupLoadMode.Server
  • Client-side - GridTableView.GroupLoadMode.Client
 

 

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

Syntax

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

Members

MemberDescription
Server This is the default behavior. Groups are expanded after postback to the server for example:

<MasterTableView GroupLoadMode="Server">
Client Groups will be expanded client-side and no postback will be performed.

<MasterTableView GroupLoadMode="Client">
and set the client setting AllowGroupExpandCollapse to true:

<ClientSettings AllowGroupExpandCollapse="True">

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Telerik.WebControls.GridGroupLoadMode

Requirements

Namespace: Telerik.WebControls

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

Assembly: RadGrid (in RadGrid.dll)

See Also