Click or drag to resize
GridGroupLoadMode Enumeration

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

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

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public enum GridGroupLoadMode
Members
  Member nameValueDescription
Server0 This is the default behavior. Groups are expanded after postback to the server for example:
<MainView GroupLoadMode=<font color="black"><font class="string">"Server"</font>></font>
Client1 Groups will be expanded client-side and no postback will be performed.
<MainView GroupLoadMode=<font color="black"><font class="string">"Client"</font>></font>
and set the client setting AllowGroupExpandCollapse to true:
<ClientSettings AllowGroupExpandCollapse=<font color="black"><font class="string">"True"</font>></font>
See Also