This is a migrated thread and some comments may be shown as answers.

problem with the fileexplorer and the scriptmanager

1 Answer 29 Views
FileExplorer
This is a migrated thread and some comments may be shown as answers.
Konstantin Spielmann
Top achievements
Rank 1
Konstantin Spielmann asked on 31 Jul 2013, 02:45 PM
Hello,

i have a master page and a page with a radwindowmanager
includes the fileexplorer.
The master page includes a script manager.
When accessing the page i receive the following error:
"The registration of UpdatePanel with ID "ajax panel" can not be
canceled
because it was not registered with the ScriptManager.
This can happen if the UpdatePanel was removed from the control
tree
and later added again. This operation is not supported.
Parameter name: updatepanel"

Here is my html code:
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Test.aspx.cs" Inherits="Test" %>
 
<asp:Content ID="Content1" ContentPlaceHolderID="Main" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
    <telerik:RadWindowManager ID="RadWindowManager1" runat="server">
        <Windows>
            <telerik:RadWindow ID="RadWindow1" runat="server" style="display:none;">
                <ContentTemplate>
                    <telerik:RadFileExplorer ID="RadFileExplorer1" Runat="server" Language="de-DE" Skin="Windows7">
    </telerik:RadFileExplorer>
                    </ContentTemplate>
            </telerik:RadWindow>
        </Windows>
    </telerik:RadWindowManager>
        <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="RadWindowManager1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadWindowManager1" UpdatePanelCssClass="" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>
    </asp:Content>

 Where is my mistake?

Thanks

1 Answer, 1 is accepted

Sort by
Tags
FileExplorer
Asked by
Konstantin Spielmann
Top achievements
Rank 1
Answers by
Konstantin Spielmann
Top achievements
Rank 1
Share this question
or