Click or drag to resize
TreeNodeExpandMode Enumeration
This enumeration controls the expand behaviour of the nodes.

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 TreeNodeExpandMode
Members
  Member nameValueDescription
ClientSide0 The default behaviour - all nodes are loaded in the intial request and expand is performed on the client, without server interaction
ServerSide1 Forces firing of the NodeExpand event - a postback occurs and developers can populate the node with its children in server side event handler
ServerSideCallBack2 Forces firing of the NodeExpand event asyncronously from the client without postback - the NodeExpand event fires and child nodes added to the node collection are automatically transferred to the client without postback.
WebService3 The child nodes are loaded from the web service specified by the KaxTreeView.WebServicePath and KaxTreeView.WebServiceMethod properties.
See Also