|
Rank: Member Groups: Member
Joined: 7/1/2009 Posts: 11
|
hello again, code @: http://www.essentialobjects.com/forum/postst3414_AJAX-Uploader--client-side-error-handler.aspxin firefox and ie works everything great but in safari when i click on upload it opens a new window. the file is uploaded but the popup window is annoying. what did i do wrong ? thanks, Victor
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
Would you mind to post your full test page? Also which version of Safari do you use?
Thanks!
|
|
Rank: Member Groups: Member
Joined: 7/1/2009 Posts: 11
|
hi, i've managed to reproduce on your website: http://demo.essentialobjects.com/Default.aspx?path=AJAXUploader -> Standard UI Customization! i'm using Safari version 4.0. note: on Google Chrome comes this problem too thanks
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
We verified both and we do not see any popup windows. Have you tried it on another machine?
|
|
Rank: Member Groups: Member
Joined: 7/1/2009 Posts: 11
|
i've checked on another machine too (mine: windows vista ; other: windows xp). the first sample runs ok but the one with Standard UI Customization doesn't work ok..
thanks
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
I see. We will look into it and get back to you as soon as possible.
|
|
Rank: Member Groups: Member
Joined: 7/1/2009 Posts: 11
|
thanks
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, We have looked into this issue and it appears to be a Safari and Chrome bug (they both use WebKit). Please check whether you have any <style> blocks inside your UpdatePanel. For example, the following code would trigger the problem:
Code: HTML/ASPX
<asp:UpdatePanel>
<ContentTemplate>
<style>
.anything { whatever; }
</style>
.....
<eo:AJAXUploader .....>
.....
</eo:AJAXUploader>
</ContentTemplate>
</asp:UpdatePanel>
Note the <style> block. To avoid the problem, move the <style> block outside of the UpdatePanel. We are also working on a permanent workaround for this issue. The permanent workaround would not require you to move the style block outside of your UpdatePanel. We will let you know as soon as that is available. Thanks!
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
We have posted a new build (2009.0.16) that should fix this issue. You can download the new build from our download page. The demo site has also been updated.
Please feel free to let us know if you still have problems.
Thanks!
|
|
Rank: Member Groups: Member
Joined: 7/1/2009 Posts: 11
|
thanks. i'll try it today.
|
|