Hi,
I amusing the WebUpload control and it does not show the file name depending on the width of the div that it is rendered in. I have attached a project which reproduces this problem (I have removed all files from the ig_ui folder so that I could upload the project). I know that if I remove "margin: 0px auto 0px auto;" from the style of the div this problem dissapears but the div is then left aligned. Does anyone have an idea how I can fix this problem.
Thanks
Hello wakefl,
Let me know if I understood the issue correctly. When you have a style “margin: 0px auto 0px auto” for the div inside which the web upload is the name of the file is not completely visible as in the attached screenshot.
If you set some width to the uploader that seems to be resolved. So for set the width accordingly for each uploader and let me know if you have any questions or concerns or if I’ve misunderstood the issue.
Best Regards,
Maya Kirova
Developer Support Engineer
Infragistics, Inc.
http://es.infragistics.com/support
Hi Maya,
Thanks for the quick response. I have tried setting the width on the uploaders but this does not resolve my issue. The attached screenshot is a result of the following code:
<body>
<form id="form1" runat="server">
<div style="margin: 0px auto 0px auto; width: 700px;">
<h2>
Without setting uploader width
</h2>
<ig:WebUpload ID="WebUpload4" runat="server" Mode="Single">
</ig:WebUpload>
</div>
<div style="margin: 0px auto 0px auto; width: 800px;">
<ig:WebUpload ID="WebUpload5" runat="server" Mode="Single">
<div style="margin: 0px auto 0px auto; width: 900px;">
<ig:WebUpload ID="WebUpload6" runat="server" Mode="Single">
Setting uploader width
<ig:WebUpload ID="WebUpload1" runat="server" Mode="Single" Width="600px">
<ig:WebUpload ID="WebUpload2" runat="server" Mode="Single" Width="600px">
<ig:WebUpload ID="WebUpload3" runat="server" Mode="Single" Width="600px">
</form>
</body>