ASP.NET TreeView and Selecting the Selected Node - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T14:01:28Z http://stackoverflow.com/feeds/question/107150 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/107150/asp-net-treeview-and-selecting-the-selected-node 1 ASP.NET TreeView and Selecting the Selected Node BlackMael 2008-09-20T04:54:00Z 2008-12-21T06:04:34Z <p>How do I capture the event of the clicking the Selected Node of a TreeView? It doesn't fire the <strong>SelectedNodeChanged</strong> since the selection has obviously not changed but then what event can I catch so I know that the Selected Node was clicked?</p> <p><strong>UPDATE</strong>: When I have some time, I'm going to have to dive into the bowels of the TreeView control and dig out what and where it handles the click events and subclass the TreeView to expose a new event OnSelectedNodeClicked.</p> <p>I'll probably do this over the Christmas holidays and I'll report back with the results.</p> <p><strong>UPDATE</strong>: I have come up with a solution below that sub-classes the TreeView control.</p> http://stackoverflow.com/questions/107150/asp-net-treeview-and-selecting-the-selected-node/107298#107298 0 Answer by Wayne for ASP.NET TreeView and Selecting the Selected Node Wayne 2008-09-20T05:47:50Z 2008-09-20T05:47:50Z <p>Easiest way - if it doesn't interfere with the rest of your code - is to simply set the node as not selected in the SelectedNodeChanged method.</p> <pre><code>protected void TreeView1_SelectedNodeChanged(object sender, EventArgs e){ // Do whatever you're doing TreeView1.SelectedNode.Selected = false; } </code></pre> http://stackoverflow.com/questions/107150/asp-net-treeview-and-selecting-the-selected-node/107466#107466 0 Answer by Blackadder for ASP.NET TreeView and Selecting the Selected Node Blackadder 2008-09-20T07:06:53Z 2008-09-20T07:06:53Z <p>You can always use the MouseDown or MouseUp event and check to see if it the selected node.</p> http://stackoverflow.com/questions/107150/asp-net-treeview-and-selecting-the-selected-node/107509#107509 0 Answer by Larry.Smithmier for ASP.NET TreeView and Selecting the Selected Node Larry.Smithmier 2008-09-20T07:26:06Z 2008-09-20T07:26:06Z <p>Store what is selected and use code in the Page_Load event handler to compare what is selected to what you have stored. Page_Load is called for every post back even if the selected value doesn't change, unlike SelectedNodeChanged.</p> <p>Example</p> <p><img src="http://smithmier.com/TreeViewExample.png" alt="alt text" title="Screen snippit of example" /></p> <p>html</p> <pre><code>&lt;form id="form1" runat="server"&gt; &lt;div&gt; &lt;asp:TreeView ID="TreeView1" runat="server" OnSelectedNodeChanged="TreeView1_SelectedNodeChanged" ShowLines="True"&gt; &lt;Nodes&gt; &lt;asp:TreeNode Text="Root" Value="Root"&gt; &lt;asp:TreeNode Text="RootSub1" Value="RootSub1"&gt;&lt;/asp:TreeNode&gt; &lt;asp:TreeNode Text="RootSub2" Value="RootSub2"&gt;&lt;/asp:TreeNode&gt; &lt;/asp:TreeNode&gt; &lt;asp:TreeNode Text="Root2" Value="Root2"&gt; &lt;asp:TreeNode Text="Root2Sub1" Value="Root2Sub1"&gt; &lt;asp:TreeNode Text="Root2Sub1Sub1" Value="Root2Sub1Sub1"&gt;&lt;/asp:TreeNode&gt; &lt;/asp:TreeNode&gt; &lt;asp:TreeNode Text="Root2Sub2" Value="Root2Sub2"&gt;&lt;/asp:TreeNode&gt; &lt;/asp:TreeNode&gt; &lt;/Nodes&gt; &lt;/asp:TreeView&gt; &lt;asp:Label ID="Label1" runat="server" Text="Selected"&gt;&lt;/asp:Label&gt; &lt;asp:TextBox ID="TextBox1" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;asp:Label ID="Label2" runat="server" Text="Label"&gt;&lt;/asp:Label&gt;&lt;/div&gt; &lt;/form&gt; </code></pre> <p>C#</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { if(TreeView1.SelectedNode!=null &amp;&amp; this.TextBox1.Text == TreeView1.SelectedNode.Value.ToString()) { Label2.Text = (int.Parse(Label2.Text) + 1).ToString(); } else { Label2.Text = "0"; } } protected void TreeView1_SelectedNodeChanged(object sender, EventArgs e) { this.TextBox1.Text = TreeView1.SelectedNode.Value.ToString(); } </code></pre> http://stackoverflow.com/questions/107150/asp-net-treeview-and-selecting-the-selected-node/357247#357247 0 Answer by Drell for ASP.NET TreeView and Selecting the Selected Node Drell 2008-12-10T19:20:50Z 2008-12-10T19:20:50Z <p>When you're adding nodes to the tree in the _TreeNodePopulate() event, set the .SelectionAction property on the node.</p> <pre><code>TreeNode newCNode; newCNode = new TreeNode("New Node"); newCNode.SelectAction = TreeNodeSelectAction.Select; //now you can set the .NavigateUrl property to call the same page with some query string parameter to catch in the page_load() newCNode.NavigateUrl = "~/ThisPage.aspx?args=" + someNodeAction RootNode.ChildNodes.Add(newCNode); </code></pre> http://stackoverflow.com/questions/107150/asp-net-treeview-and-selecting-the-selected-node/384163#384163 1 Answer by BlackMael for ASP.NET TreeView and Selecting the Selected Node BlackMael 2008-12-21T06:03:14Z 2008-12-21T06:03:14Z <p>After a somewhat lengthy period, I have finally had some time to look into how to subclass the TreeView to handle a Selected Node being clicked.</p> <p>Here is my solution which exposes a new event <strong>SelectedNodeClicked</strong> which you can handle from the Page or wherever. (<em>If needed it is a simple task to refactor into C#</em>)</p> <pre><code>Imports System.Web.UI Imports System.Web Public Class MyTreeView Inherits System.Web.UI.WebControls.TreeView Public Event SelectedNodeClicked As EventHandler Private Shared ReadOnly SelectedNodeClickEvent As Object Private Const CurrentValuePathState As String = "CurrentValuePath" Protected Property CurrentValuePath() As String Get Return Me.ViewState(CurrentValuePathState) End Get Set(ByVal value As String) Me.ViewState(CurrentValuePathState) = value End Set End Property Friend Sub RaiseSelectedNodeClicked() Me.OnSelectedNodeClicked(EventArgs.Empty) End Sub Protected Overridable Sub OnSelectedNodeClicked(ByVal e As EventArgs) RaiseEvent SelectedNodeClicked(Me, e) End Sub Protected Overrides Sub OnSelectedNodeChanged(ByVal e As System.EventArgs) MyBase.OnSelectedNodeChanged(e) ' Whenever the Selected Node changed, remember its ValuePath for future reference Me.CurrentValuePath = Me.SelectedNode.ValuePath End Sub Protected Overrides Sub RaisePostBackEvent(ByVal eventArgument As String) ' Check if the node that caused the event is the same as the previously selected node If Me.SelectedNode IsNot Nothing AndAlso Me.SelectedNode.ValuePath.Equals(Me.CurrentValuePath) Then Me.RaiseSelectedNodeClicked() End If MyBase.RaisePostBackEvent(eventArgument) End Sub End Class </code></pre>