TreeNodeExpandMode Enumeration |
This enumeration controls the expand behaviour of the nodes.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax public enum TreeNodeExpandMode
Public Enumeration TreeNodeExpandMode
public enum class TreeNodeExpandMode
Members
| Member name | Value | Description |
---|
| ClientSide | 0 |
The default behaviour - all nodes are loaded in the intial request and expand is performed on the client, without server interaction
|
| ServerSide | 1 |
Forces firing of the NodeExpand event - a postback occurs and developers can populate the node with its children in server side event handler
|
| ServerSideCallBack | 2 |
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.
|
| WebService | 3 |
The child nodes are loaded from the web service specified by the KaxTreeView.WebServicePath and KaxTreeView.WebServiceMethod properties.
|
See Also