Unplanned
Last Updated: 30 Dec 2019 14:49 by ADMIN
ADMIN
Nencho
Created on: 24 Nov 2015 11:25
Category: Navigation
Type: Bug Report
2
RadNavigation becomes inactive, when a button updates (via AJAX) RadAutoCompleteBox on the same page

		
3 comments
ADMIN
Rumen
Posted on: 30 Dec 2019 14:49

Hi Alrep,

You can wrap the navigation component along with the asp:ContentPlaceHolder within a UpdatePanel, e.g


<asp:UpdatePanel runat="server" ID="up1">
    <ContentTemplate>
        <telerik:RadNavigation ID="radNav" Skin="MetroTouch" Font-Size="Medium" runat="server" RenderMode="Auto">
            <Nodes>
                <telerik:NavigationNode Text="Test">
                    <Nodes>
                        <telerik:NavigationNode NavigateUrl="test1.aspx" Text="Test 1"></telerik:NavigationNode>
                        <telerik:NavigationNode NavigateUrl="test1.aspx" Text="Test 2"></telerik:NavigationNode>
                    </Nodes>
                </telerik:NavigationNode>
            </Nodes>
        </telerik:RadNavigation>

        <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
        </asp:ContentPlaceHolder>
    </ContentTemplate>
</asp:UpdatePanel>

 

For your convenience I have attached my test files.

If your scenario is different please modify them so that they start to exhibit the issue and send them back for examination.

Regards,
Rumen
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Alper
Posted on: 25 Dec 2019 08:59
This problem still exists when using masterpage... And i tried to cover with update panel but no success... Could help us?
ADMIN
Peter Milchev
Posted on: 01 Jun 2017 08:49
Workaround: 

Include the Navigation in the partial postback response. 

E.g. Adding the Navigation as an AjaxUpdatedControl or putting the Navigation in an asp:UpdatePanel