Ajax uploader used in ModalPopup doesn't work in Opera

Last post 07-03-2010, 3:07 AM by Kenneth. 3 replies.
Sort Posts: Previous Next
  •  06-11-2010, 5:20 AM 61684

    Ajax uploader used in ModalPopup doesn't work in Opera

    Hello,
     
    the first problem with Ajax uploader is that the input button dissapears after the modalpopup is shown (the button is visible for only a second). But it still works if you click on the position where the button should be located. After selecting a file, a white rectangle appears in the upper left corner and nothing happens.
     
    I am using the latest version of Opera and the latest version of Ajax uploader. For showing modalpopups there is ModalPopupExtender used.
     
    Can you please advise...
     
    Thanks, Grega
     
  •  06-16-2010, 11:28 AM 61816 in reply to 61684

    Re: Ajax uploader used in ModalPopup doesn't work in Opera

    Grega,
     
    We are not familar with the ModalPopupExtender control.
     
    Please check the following example:
     
     
    In the insert image dialog, the upload button works fine.
     
    This dialog also is a modal dialog.

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  06-16-2010, 12:14 PM 61827 in reply to 61816

    Re: Ajax uploader used in ModalPopup doesn't work in Opera

    Hello Adam,
     
    thanks for reply.
     
    I checked the example page and I noticed that in IE a new modal popup is used, but with Opera a new window opens. How can I do that?
     
    P.S.: after inserting a photo (or canceling it) the editor freezes in Opera browser.
     
    Can you please advise.
     
    Thanks,
    Grega
  •  07-03-2010, 3:07 AM 62268 in reply to 61827

    Re: Ajax uploader used in ModalPopup doesn't work in Opera

    Hi cupi,
     
    It works fine for me. Please try the example below.
     
    I tested on opera 10.10 with vista
     
    1. <%@ Page Language="C#" %>   
    2.   
    3. <%@ Register Namespace="AjaxControlToolkit" Assembly="AjaxControlToolkit" TagPrefix="ajax" %>   
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    5. <html xmlns="http://www.w3.org/1999/xhtml">   
    6. <head runat="server">   
    7.     <title>example</title>   
    8. </head>   
    9. <body>   
    10.     <form id="form1" runat="server">   
    11.     <div>   
    12.         <asp:ScriptManager ID="ScriptManager1" runat="server">   
    13.         </asp:ScriptManager>   
    14.         <asp:UpdatePanel ID="UpdatePanel1" runat="server">   
    15.             <ContentTemplate>   
    16.                 <ajax:ModalPopupExtender ID="ModalPopupExtender1" runat="server" PopupControlID="panel1" TargetControlID="button1"  
    17.                     X="300" Y="300">   
    18.                 </ajax:ModalPopupExtender>   
    19.                 <asp:Button ID="button1" runat="server" Text="show" />   
    20.                 <asp:Panel ID="panel1" runat="server" Style="width: 600px; border: solid 1px red;   
    21.                     text-align: center; padding-top: 20px">   
    22.                     <CuteWebUI:UploadAttachments ID="a1" runat="server">   
    23.                     </CuteWebUI:UploadAttachments>   
    24.                 </asp:Panel>   
    25.             </ContentTemplate>   
    26.         </asp:UpdatePanel>   
    27.     </div>   
    28.     </form>   
    29. </body>   
    30. </html>  
    Regards,
     
    Ken
View as RSS news feed in XML