Search
TreeNode Class
See Also
 






Represents an expandable ListItem.

Namespace: MindFusion.Common.UI
File: TreeNode.js

 Syntax

JavaScript  Copy Code

// class
TreeNode.prototype = {}

 Example

The following code creates a new TreeView element using a <div> element with id "treeview" initialized in an HTML page. Then it creates a TreeNode item and adss it to the items collection of the TreeView.

JavaScript  Copy Code

var treeView = new ui.TreeView(document.getElementById("treeView"));
treeView.width = treeView.height = ui.Unit.percentage(100);
treeView.theme = theme;

// create a tree node that will be a root in our hierarchy
var root = new ui.TreeNode("body");
treeView.items.add(root);

 Inheritance Hierarchy

MindFusion.Common.UI.TemplatedItem
    MindFusion.Common.UI.ListItem
        MindFusion.Common.UI.TreeNode
            MindFusion.Common.UI.MenuItem

 See Also