Tree Setup XML

Controls the data that will be displayed and the design of each item displayed in the tree. This does not affect the Node Setup XML.

DataTextField

The name of the column from the data that controls the Text to use for each node.

DataFieldID

The name of the column from the data that controls the ID of each node.

DataValueField

The name of the column from the data that controls the Value of each node.

DataParentField

The name of the column from the data that controls the node’s parent ID.

DataNavigateURLField

The name of the column from the data that controls the URL used when a user clicks on a node.

OnClientContextMenuItemClicked

The JavaScript function name to be called when a context menu item is clicked.

OnClientContextMenuItemClicking

The JavaScript function name to be called when a context menu item is being clicked.

OnClientContextMenuShowing

The JavaScript function name to be called when a context menu item is showing.

OnClientContextMenuShown

The JavaScript function name to be called when a context menu item is shown.

FontBold

A true/false indication that the text should be bolded.

FontItalic

A true/false indication that the text should be italicized.

FontName

The name of the server font to be used for each node.

FontOverline

A true/false indication that a line should be displayed over the text.

FontSize

The size of the displayed text, measured in points.

FontStrikeout

A true/false indication that the text should be struck.

FontUnderline

A true/false indication that the text should be underlined.

BackColor

The HEX background color of each node.

ForeColor

The HEX font color of each node.

BorderColor

The HEX border color of each node.

BorderStyle

The border style used for each node.

BorderWidth

The border width of each node, measured in points.

Height

The height of each node, measured in points.

LoadingMessage

The message to show when a Load on Demand item is clicked.

LoadingStatusPosition

The position of the Loading Text to display.

      BeforeNodeText - 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 - 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        - The text is not changed and "(loading ...)" is displayed when child nodes are being loaded (assuming the LoadingMessage property has been set to "(loading...)"

      None - No loading text is displayed at all

ShowLineImages

A true/false indication that line images from node to node are displayed.

SingleExpandPath

A true/false indication that only the current first level of nodes may be expanded.

Skin

The pre-defined style used for each node item.

      Black

      Default

      Forest

      Hay

      Office2007

      Outlook

      Simple

      Sunset

      Telerik

      Vista

      Web20

      WebBlue

ToolTip

The text displayed when a node is hovered over.

Visible

A true/false indication if the item should be displayed.

Width

The width of each node, measured in points.

Example:

<CG>

<C>

<OnClientContextMenuItemClicking>clientContextMenuItemClicking</OnClientContextMenuItemClicking>

<DataTextField>Title</DataTextField>

<DataFieldID>ID</DataFieldID>

<DataValueField>ParentID</DataValueField>

<DataNavigateURLField>Url</DataNavigateURLField>

<DataParentField>ParentID</DataParentField>

<Skin>Vista</Skin>

</C>

</CG>

Back to Top