Click or drag to resize
GridChildLoadMode Enumeration
Defines the possible modes for loading the child items when KaxGrid displays hierarchy.

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 GridChildLoadMode
Members
  Member nameValueDescription
ServerBind0 All child GridTableViews will be bound immediately when DataBind occurs for a parent GridTableView or KaxGrid.
ServerOnDemand1 DataBind of a child GridTableView would only take place when an item is Expanded . This is the default value of HierarchyLoadMode
Client2

This 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 EnableExpandCollapse to true.

See Also