Problem using multiple instances of CuteEditor inside UpdatePanel on Google Chrome

  •  01-28-2009, 2:20 PM

    Problem using multiple instances of CuteEditor inside UpdatePanel on Google Chrome

    The following error occurs on on Google Chrome (doesn't seem to affect IE7 and Firefox):

    When I use multiple instances of CuteEditor inside an UpdatePanel, any text changes in the 2nd instance of the editor are not reflected in the "Text" property.  I only experience this problem on Chrome when using an UpdatePanel; if not Chrome *or* not in an UpdatePanel, everything works as expected.

    The instances of the editor are declared as follows:

        <asp:UpdatePanel ID="upProfile" runat="server" Visible="true">
    (...) 
                                 <CE:Editor id="CEfirstAnswer" runat="server" OnLoad="CEfirstAnswer_OnLoad" /> 
                                <br />
                                <p>(text goes here)</p>
                                <br />
                                <CE:Editor id="CEsecondAnswer" runat="server" OnLoad="CEsecondAnswer_OnLoad"  /> 
    (...)
        </asp:UpdatePanel>                        

    AJAX functionality is required for something else on the page and it is not possible to arrange things so that the instances of CuteEditor appear outside of the UpdatePanel.

    Any ideas???

    Thanks,
    Robert
     

View Complete Thread