AjaxUpload progress bar distortsing my table. What can I do to fix?

  •  05-05-2010, 9:45 AM

    AjaxUpload progress bar distortsing my table. What can I do to fix?

    When I select the files to upload, the progress bar will distort the table where the button is. Basically, it expands the row so that the progress bar fits into the table. I need the progress bar to display under the table.
    In my example, you'll see how the table row will expand according to the amount of files.
     
    I'm not even sure why the progressbars are displayed there, since the UploadAttachments control is outside the table.

     Here's the code. It's very short:  Thanks.

    <%@ Page Language="C#" %>

    <script runat="server">
    </script>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head1" runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
        <div>
    <table style="width: 200px">
        <tr style="height:39px; background-color:Red">
            <td>
                <asp:Button ID="button_select" runat="server" Text="Button" />
            </td>
        </tr>
    </table>
    <CuteWebUI:UploadAttachments ID="UploadAttachments1" runat="server"
        MaxFilesLimit="8" TempDirectory="UploaderTemp_server"
        AttachmentTableStyle="display:none" InsertButtonID="button_select">
    </CuteWebUI:UploadAttachments>
        </div>
        </form>
    </body>
    </html>
View Complete Thread