Welcome Guest Search | Active Topics | Sign In | Register

AJAXUploader - Upload file information overlaps other page controls Options
anddy
Posted: Monday, June 29, 2009 4:19:46 PM
Rank: Newbie
Groups: Member

Joined: 2/18/2009
Posts: 4
Upload file information overlaps other page controls on the screen, this issue seems to affect only IE8, I have tested IE6, IE7, and several FF versions and they seem to correctly render the

<asp:PlaceHolder ID="ProgressTextPlaceHolder" runat="server">Progress Text Place Holder </asp:PlaceHolder>

Is there any fix for this issue, or a patch to avoid this problem in IE8, thanks in advance for any tips or help.
eo_support
Posted: Monday, June 29, 2009 4:26:02 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194
Hi,

The easiest way is to place a DIV around the ProgressTextPlaceHolder and clip its size. It will be something like this:

Code: HTML/ASPX
<div style="width:200px;height:30px;overflow:hidden;">
    <asp:PlaceHolder ID="ProgressTextPlaceHolder" runat="server">
    </asp:PlaceHolder>
</div>


Note the explicit widht and height on the div and also "overflow:hidden" on the element.

Thanks!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.