TreeViewLoadingStatusPosition Enumeration |
Specifies where the loading message is shown when Client-side load on demand is used.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax public enum TreeViewLoadingStatusPosition
Public Enumeration TreeViewLoadingStatusPosition
public enum class TreeViewLoadingStatusPosition
type TreeViewLoadingStatusPosition
Members
| Member name | Value | Description |
---|
| BeforeNodeText | 0 |
If the node text is "Some Text", the text is changed to "(loading ...) Some Text" when child nodes are being loaded (Assuming the LoadingMessage property has been set to "(loading...)";
|
| AfterNodeText | 1 |
If the node text is "Some Text", the text is changed to "Some Text (loading ...)" when child nodes are being loaded (Assuming the LoadingMessage property has been set to "(loading...)";
|
| BelowNodeText | 2 |
The text is not changed and (loading ...)" when child nodes are being loaded (Assuming the LoadingMessage property has been set to "(loading...)";
|
| None | 3 |
No loading text is displayed at all.
|
See Also