vote up 0 vote down star
1

I have created an extended TreeView that overrides the CreateNode method to return an extened TreeNode like so

public class SiteMapTreeView : System.Web.UI.WebControls.TreeView
{
    protected override TreeNode CreateNode()
    {
        return new SiteMapTreeNode();
    }
}

The problem is that the overridden RenderPreText method on the extended TreeNode is not firing. The extended TreeNode code is as below

public class SiteMapTreeNode: System.Web.UI.WebControls.TreeNode
{
    protected override void RenderPreText(HtmlTextWriter writer)
    {
        writer.Write("pre text here");
        base.RenderPreText(writer);
    }
}

The RenderPreText is completely ignored here. I am using .net 3.5 and have tried calling this from the extended TreeView to force it to create the extended TreeNode but it fails to do so.

protected override void CreateChildControls()
{
    this.Controls.Clear();
    base.CreateChildControls();
}

Any Ideas?

Thanks in advance!

flag
How have you determined that RenderPreText is not being called? Via a breakpoint? – AnthonyWJones Apr 14 at 10:10
When stepping through the code the breakpoint in RenderPreText is not hit. Also, the "pre text here" does not appear in the html! – Nick Apr 14 at 11:18
Just to add that the tree does render what it would have done originally - as though I hadn't extended it at all. – Nick Apr 15 at 8:07

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.