Hi
For ergonomy reasons, I need to put an uploader in a div hidden by CSS.
<div id="zAddComment" style="display: none;">
[..]
<div id="zUploadForm" class="uploadForm" runat="server">
<asp:ScriptManager ID="Scriptmanager1" runat="server" />
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:LinkButton id="bInsert" runat="server" />
<CuteWebUI:UploadAttachments id="tDocUpload" InsertButtonID="bInsert" runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
</div>
</div>
If i remove the style="display: none;" everything works perfectly.
If not, the upload is not initialized and clicking on the upload button does not do anything at all.
Any work-around?
PS: I downloaded and installe d the new release but the problem is still here.