Hi,
We have sent you a private message that contains the download location for the new build.
This build fixes the text box part. So the uploader will not extend itself due to the file name is too long in the textbox. However one issue still remains with the posted file list if the file name is a single long "unbreakable" word (without any space). In this case the browser would not break the single word into multiple lines and results in expanding the whole uploader. This situation is not common but does occur. The easiest workaround for this issue is to:
1. Right click the uploader, then choose to edit the uploader's LayoutTemplate. This will generate the default layout template for you;
2. Find
Code: HTML/ASPX
<asp:PlaceHolder id="PostedFilesPlaceHolder" runat="server">
Posted Files Place Holder
</asp:PlaceHolder>
In the layout template, and wrap it around with something like this:
Code: HTML/ASPX
<div style="width:350px;overflow-x:hidden">
....
</div>
This way the browser will no longer extend the uploader because the long line is now clipped off. Clipping off a long file name is less an issue than affecting the page layout. Neverthless, we are continue working on this and should be able to provide a solution that will "force" wrap the long unbreakable file names very soon.
Hope this helps.
Thanks