vote up 0 vote down star

I have a class that inherits from TreeNode, called ExtendedTreeNode. To add an object of this type to the treeview is not a problem. But how do I retrieve the object from the treeview?

I have tried this:

TreeNode node = tvManual.Find("path/to/node"); // tvManual is a treeview

return ((ExtendedTreeNode)node).Property;

But this doesn't work. I get this error: Unable to cast object of type 'System.Web.UI.WebControls.TreeNode' to type 'PCK_Web_new.Classes.ExtendedTreeNode'.

What do I have to do to make this work?

------------ SOLUTION -----------------

[Edit] My custom TreeNode class looks like this:

public class ExtendedTreeNode : TreeNode
{
    private int _UniqueId;

    public int UniqueId
    {
        set { _UniqueId = value; }
        get { return _UniqueId; }
    }
    public ExtendedTreeNode()
    {
    }
}

And this way I add Nodes to my treeview:

ExtendedTreeNode TN2 = new ExtendedTreeNode();

TN2.Text = "<span class='Node'>" + doc.Title + "</span>";
TN2.Value = doc.ID.ToString();
TN2.NavigateUrl = "ViewDocument.aspx?id=" + doc.ID + "&doc=general&p=" + parent;
TN2.ImageUrl = "Graphics/algDoc.png";
TN2.ToolTip = doc.Title;
TN2.UniqueId = counter;

tvManual.FindNode(parent).ChildNodes.Add(TN2);

And this way I retrieve my ExtendedTreeNode object:

TreeNode node = tvManual.Find("path/to/node");
ExtendedTreeNode extNode = node as ExtendedTreeNode;
return extNode.UniqueId;

I am using .NET 3.5 SP1

flag

59% accept rate
Are all added Nodes of you type ExtendedTreeNode? or do you add regular TreeNode objects as well? Maybe you could show how you are adding them to the TreeView. – SwDevMan81 Sep 17 at 11:22
Yes, all Nodes must be of type ExtendedTreeNode – Martijn Sep 17 at 11:24

3 Answers

vote up 1 vote down check

You could try the following to get all nodes under your parent:

TreeNode[] parentNode = treeView1.Nodes.Find (parentid, true);
foreach(TreeNode node in parentNode)
{
    ExtendedTreeNode ext_tree_node = node as ExtendedTreeNode;
    if(ext_tree_node != null)
    {
        // Do your work
    }
}
link|flag
When I do ExtendedTreeNode enode = node as ExtendedTreeNode; enode is always null. How come? – Martijn Sep 17 at 11:46
when using the as casting (called safe casting), if the casting fails, the object is set to null – astander Sep 17 at 12:16
How do I get this to work? Or what is going wrong? – Martijn Sep 17 at 12:24
Ok, I just looked at how you are adding them. Youll want to change my example from "node as ExtendedTreeNode" to "node.Tag as ExtendedTreeNode". Which brings me to my question, why are you doing that? I think you want to create NT2 and use that (i.e, do not create "TreeNode tn = new TreeNode();"). Then add TN2, not tn, and my original post should work. – SwDevMan81 Sep 17 at 15:05
And your ExtendedTreeNode class should start with the following: "public class ExtendedTreeNode : TreeNode" – SwDevMan81 Sep 17 at 15:06
vote up 0 vote down

I assume you're creating the nodes as ExtendedTreeNodes.

I've noticed that the XxxView (ListView, TreeView, DataGridView) controls tend to clone things unexpectedly. Have you implemented ICloneable.Clone ()?

That may work; TreeNode implements Clone () virtually.

I find it easier, though to implement extended properties using the Tag property of the treenode:

TreeNode node = tvManual.Find("path/to/node");
return node.Tag as ExtendedTreeNode;


I strongly recommend against using Clone (); it's a fragile pattern. Use the Tag property:

class ExtendedInfo
{
    string NavigateUrl;
    string ImageUrl;
    int UniqueId;

    // other custom properties go here
}

// ...

void CreateTreeNode ()
{
    TreeNode TN = new TreeNode();

    string parent = "parent";    

    TN.Text = "<span class='Node'>" + doc.Title + "</span>";
    TN.Value = doc.ID.ToString();
    TN.ToolTip = doc.Title;

    ExtendedInfo extInfo = new ExtendedInfo;
    extInfo.NavigateUrl = "ViewDocument.aspx?id=" + doc.ID + "&doc=general&p=" + parent;
    extInfo.ImageUrl = "Graphics/algDoc.png";
    extInfo.UniqueId = counter;

    TN.Tag = extInfo;
}

// ...

ExtendedInfo GetExtendedInfo (TreeNode node)
{
    return node.Tag as ExtendedInfo;
}
link|flag
No, I don't have implmented ICloneble.Clone() Should I do this? If so, how? – Martijn Sep 17 at 11:37
The Tag property of the TreeNode doesn't exist? – Martijn Sep 17 at 11:40
object TreeNode.Tag does exist in Windows Forms. Not sure about ASP.NET, but why wouldn't it? – XXXXX Sep 17 at 12:00
I don't know, but I get an error if I use node.Tag – Martijn Sep 17 at 12:02
Assuming you have a reasonable copy constructor: public override object Clone () { return new ExtendedTreeNode (this); } However, Clone () is a very fragile pattern. I strongly recommend looking harder for the .Tag () property. – XXXXX Sep 17 at 12:03
show 14 more comments
vote up 0 vote down

See this link.

I think between post backs the state is not saved.

EDIT: additional link

link|flag

Your Answer

Get an OpenID
or

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