Good Morning,
I have an AJAX Uploader that renders correctly (the way I expect) within Internet Explorer. However, when it is rendered in Chrome is doesn't show the Input Box Placeholder and the "Browse" button says "Choose File" and it is enabled (should be disabled). Within FireFox, the uploader renders correctly, however, the "Browse" button is enabled and should be disabled.
At a minimum I need the input buttons disabled upon the initial rendering. If I need to do this manually, I will get that figured out, however, I would expect the object to render in Chrome and FireFox to render as it does in IE.
Any help would be appreciated.
I am using the latest version of EO Objects. Chrome is Version 24.0.1312.57 m and FireFox version is 18.0.2. IE is 9.0
Side note: if I want to post an image on this site do I need to put an <img> tag with a url to the image inside your tag? Just curious......
Here is the object definition:
Code: HTML/ASPX
<%@ Register Assembly="EO.Web" Namespace="EO.Web" TagPrefix="eo" %>
<!DOCTYPE html />
<html>
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<eo:AJAXUploader ID="uldrDocMgmt1" runat="server" Enabled="false" Font-Names="Tahoma" Font-Size="9pt" AutoPostBack="True" TempFileLocation="~/uploadtemp" FinalFileLocation="~/upload"
ClientSideOnCancel="uploader_canceled" ClientSideOnError="CustomErrorHandler" AllowedExtension="" Width="700px">
<LayoutTemplate>
<table style="padding: 2; width: 675px;">
<tr>
<td>
<asp:PlaceHolder ID="InputPlaceHolder" runat="server">Input Box Place Holder</asp:PlaceHolder>
</td>
<td style="padding-left: 4px;">
<asp:Button ID="UploadButton" runat="server" Text="Upload" />
</td>
</tr>
<tr>
<td>
<asp:PlaceHolder ID="ProgressTextPlaceHolder" runat="server">Progress Text Place Holder</asp:PlaceHolder>
</td>
</tr>
</table>
</LayoutTemplate>
</eo:AJAXUploader>
</div>
</form>
</body>
</html>