Why is my asp:TreeView selected node reset when in an UpdatePanel? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T12:53:58Zhttp://stackoverflow.com/feeds/question/205114http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/205114/why-is-my-asptreeview-selected-node-reset-when-in-an-updatepanel1Why is my asp:TreeView selected node reset when in an UpdatePanel?tpower2008-10-15T15:15:23Z2009-07-07T09:53:01Z
<p>I have an asp.net 2.0 page that contains 2 <code>UpdatePanels</code>.</p>
<p>The first panel contains a <code>TreeView</code> control, when I select a node in the three view control it triggers an update of the second <code>UpdatePanel</code> only. This much is behaving correctly.</p>
<p>There are two buttons on the page outside of an update panel (previous/next). These buttons trigger an update of both panels. The behaviour of the buttons is to select the adjacent node in the tree. The first time I click on one of these buttons I get the expected behaviour, and adjacent node is selected and the both panels are updated to reflect this change.</p>
<p>The problem happens when I click any of these buttons again. The selected node of the treeview seems to remember the previously selected node and the buttons act on this node. So the behaviour of the previous/next buttons is to do nothing or jump back two.</p>
<p><strong>Edit</strong> - Sample code that demonstrates my problem</p>
<p>The markup</p>
<pre><code> <asp:UpdatePanel ID="myTreeViewPanel" runat="server">
<ContentTemplate>
<asp:TreeView runat="server" ID="myTreeView" OnSelectedNodeChanged="myTreeView_SelectedNodeChanged">
<SelectedNodeStyle BackColor="#FF8000" />
</asp:TreeView>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="myButton" EventName="Click" />
</Triggers>
</asp:UpdatePanel>
<asp:UpdatePanel ID="myLabelPanel" runat="server">
<ContentTemplate>
<asp:Label runat="server" ID="myLabel" Text="myLabel"></asp:Label>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="myTreeView" EventName="SelectedNodeChanged" />
<asp:AsyncPostBackTrigger ControlID="myButton" EventName="Click" />
</Triggers>
</asp:UpdatePanel>
<asp:Button runat="server" ID="myButton" Text="myButton" OnClick="myButton_Click" />
</code></pre>
<p>The code behind</p>
<pre><code> protected void Page_Load ( object sender, EventArgs e )
{
if ( !IsPostBack )
{
myTreeView.Nodes.Add( new TreeNode( "Test 1", "Test One" ) );
myTreeView.Nodes.Add( new TreeNode( "Test 2", "Test two" ) );
myTreeView.Nodes.Add( new TreeNode( "Test 3", "Test three" ) );
myTreeView.Nodes.Add( new TreeNode( "Test 4", "Test four" ) );
myTreeView.Nodes.Add( new TreeNode( "Test 5", "Test five" ) );
myTreeView.Nodes.Add( new TreeNode( "Test 6", "Test size" ) );
}
}
protected void myTreeView_SelectedNodeChanged ( object sender, EventArgs e )
{
UpdateLabel( );
}
protected void myButton_Click ( object sender, EventArgs e )
{
// here we just select the next node in the three
int index = myTreeView.Nodes.IndexOf( myTreeView.SelectedNode );
myTreeView.Nodes[ index + 1 ].Select( );
UpdateLabel( );
}
private void UpdateLabel ( )
{
myLabel.Text = myTreeView.SelectedNode.Value;
}
</code></pre>
<p>It is like the viewstate of the tree is not being saved?</p>
http://stackoverflow.com/questions/205114/why-is-my-asptreeview-selected-node-reset-when-in-an-updatepanel/205151#2051510Answer by Skubs for Why is my asp:TreeView selected node reset when in an UpdatePanel?Skubs2008-10-15T15:23:33Z2008-10-15T15:23:33Z<p>Sorry... Without the code I can drop only a single tip: Debug!</p>
http://stackoverflow.com/questions/205114/why-is-my-asptreeview-selected-node-reset-when-in-an-updatepanel/205464#2054640Answer by Dave Anderson for Why is my asp:TreeView selected node reset when in an UpdatePanel?Dave Anderson2008-10-15T16:43:30Z2008-10-15T16:43:30Z<p>I think you're right about the AJAX partial page postback that it doesn't update the hidden input __ViewState.</p>
<p>I have the same thing with my update panels when a user navigates back to the pages in my website application form. The normal inputs have updated the viewstate and so their values are repopulated but the state of the controls that were updated with AJAX isn't recorded and so they revert to the default state.</p>
http://stackoverflow.com/questions/205114/why-is-my-asptreeview-selected-node-reset-when-in-an-updatepanel/206077#2060770Answer by tpower for Why is my asp:TreeView selected node reset when in an UpdatePanel?tpower2008-10-15T19:28:47Z2008-10-15T20:55:08Z<p>I can fix this problem by saving and restoring the selected node in the pages own view state, by just added these two functions.</p>
<pre><code>protected override object SaveViewState()
{
ViewState["SelectedNodePath"] = myTreeView.SelectedNode.ValuePath;
return base.SaveViewState();
}
protected void Page_PreLoad(object sender, EventArgs e)
{
if (ViewState["SelectedNodePath"] != null)
{
TreeNode node = myTreeView.FindNode(ViewState["SelectedNodePath"].ToString());
if (node != null)
node.Select();
}
}
</code></pre>
<p>I can't load the selected the node inside LoadViewState() because the tree doesn't have any nodes at that point. So I do it in PreLoad.</p>
<p>It just feels wrong that I have to do this. Am I missing something?</p>
http://stackoverflow.com/questions/205114/why-is-my-asptreeview-selected-node-reset-when-in-an-updatepanel/217245#2172451Answer by Robert Paulson for Why is my asp:TreeView selected node reset when in an UpdatePanel?Robert Paulson2008-10-20T00:52:06Z2008-10-20T00:52:06Z<p>From <a href="http://www.asp.net/ajax/documentation/live/overview/UpdatePanelOverview.aspx" rel="nofollow">UpdatePanel Control Overview [asp.net]</a></p>
<blockquote>
<h3>Controls that Are Not Compatible with UpdatePanel Controls</h3>
<p>The following ASP.NET controls are not compatible with partial-page updates, and are therefore not supported inside an UpdatePanel control:</p>
<ul>
<li>TreeView and Menu controls.</li>
<li>...</li>
</ul>
</blockquote>
http://stackoverflow.com/questions/205114/why-is-my-asptreeview-selected-node-reset-when-in-an-updatepanel/304738#3047380Answer by Thomas Hansen for Why is my asp:TreeView selected node reset when in an UpdatePanel?Thomas Hansen2008-11-20T09:15:17Z2008-11-20T09:15:17Z<p>Why not try another Ajax Framework, I think <a href="http://ra-ajax.org/samples/Ajax-TreeView.aspx" rel="nofollow">our TreeView</a> is way cooler than the ASP.NET version, and it's way faster...</p>
http://stackoverflow.com/questions/205114/why-is-my-asptreeview-selected-node-reset-when-in-an-updatepanel/959471#9594710Answer by Kangkan for Why is my asp:TreeView selected node reset when in an UpdatePanel?Kangkan2009-06-06T11:05:38Z2009-06-06T11:05:38Z<p>Hi all,</p>
<p>I found this post very useful. I could very easily get the fix for SelectedNode by putting the same into the viewstate.</p>
<p>However I have a different problem. I am not getting the checkedNodes collection properly. It gives me the values some times and not sometimes. </p>
<p>I shall be detailing the behaviour very soon. Meanwhile, if anybody could help me, please lend a helping hand.</p>
<p>Regards,
Kangkan</p>
http://stackoverflow.com/questions/205114/why-is-my-asptreeview-selected-node-reset-when-in-an-updatepanel/1091395#10913950Answer by Kangkan for Why is my asp:TreeView selected node reset when in an UpdatePanel?Kangkan2009-07-07T09:53:01Z2009-07-07T09:53:01Z<p>I am facing almost a similar issue. I loose the CheckedNodes collection. I doubt the same technique will solve my issues. Any idea?</p>