Re: Javascript error on Spellcheck button

  •  09-19-2008, 9:28 AM

    Re: Javascript error on Spellcheck button

    Adam,
     
    I already have the editor working successfully within an update panel that's not the issue.
     
    The problem occurs when i place the editor within a wizard control that is in turn within an update panel.
     
    If i move the wizard outside the update panel the editor works perfectly...
     
    So a rather simplistic view is:
     
    <asp:UpdatePanel ID="myUpdatePanel" runar="server">
       <ContentTemplate>
          <asp:Wizard ID="myWizard" runat="server">
             <asp:WizardStep ID="myStep1" runat="server"
                <CE:Editor id="myEditor" AutoConfigure="Simple" runat="server" />
          </asp:Wizard>
       </ContentTemplate>
    </asp:UpdatePanel>
     
    doesn't work whereas:
     
    <%--<asp:UpdatePanel ID="myUpdatePanel" runar="server">
       <ContentTemplate>--%>
          <asp:Wizard ID="myWizard" runat="server">
             <asp:WizardStep ID="myStep1" runat="server"
                <CE:Editor id="myEditor" AutoConfigure="Simple" runat="server" />
          </asp:Wizard>
    <%--   </ContentTemplate>
    </asp:UpdatePanel>--%>
     
    does work.
     
    Cheers
     
    Pete
View Complete Thread