I am using Ext.net TreePanel which does not have an option to skip the root node.

Basically, I have the following code

protected void Page_Load(object sender, EventArgs e)
{
    SiteMapNode siteNode = SiteMap.RootNode;
    Ext.Net.TreeNode root = this.CreateNode(siteNode);
    root.Draggable = false;
    root.Expanded = true;
    TreePanel1.Root.Add(root);
}

private Ext.Net.TreeNode CreateNode(SiteMapNode siteMapNode)
{

    Ext.Net.TreeNode treeNode = new Ext.Net.TreeNode();

    treeNode.NodeID = siteMapNode.Key;
    treeNode.Text = siteMapNode.Title;
    treeNode.Qtip = siteMapNode.Description;


    SiteMapNodeCollection children = siteMapNode.ChildNodes;

    if (children != null && children.Count > 0)
    {
        foreach (SiteMapNode mapNode in siteMapNode.ChildNodes)
        {
            treeNode.Nodes.Add(this.CreateNode(mapNode));
        }
    }
    return treeNode;
}

Could you please help to skip the parent node in the above example.

Thank you and regards.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

A Root Node is required, although you can set RootVisible="false" on your <ext:TreePanel /> to hide it.

Hope this helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.