Hi,
I need to place an Upload control in a div that has a fixed height and has its contents scrolling via the overflow:auto style. The div also needs its the position style set to relative. The issue is that if the upload control is rendered in the hidden area then the "browse" button doesn't function correctly. I believe this is to do with the real file input control not being positioned correctly over the top of the control? However i can't seem to solve it. If the upload control is rendered in the visible area it works fine.
You can see the problem in the example below, the upload controls at the top of the list work fine but if you scroll to the bottom then they do not work? Any ideas?
Thanks,
Jeff
I need to place an Upload control in a div that has a fixed height and has its contents scrolling via the overflow:auto style. The div also needs its the position style set to relative. The issue is that if the upload control is rendered in the hidden area then the "browse" button doesn't function correctly. I believe this is to do with the real file input control not being positioned correctly over the top of the control? However i can't seem to solve it. If the upload control is rendered in the visible area it works fine.
You can see the problem in the example below, the upload controls at the top of the list work fine but if you scroll to the bottom then they do not work? Any ideas?
<html xmlns="http://www.w3.org/1999/xhtml" > |
<head id="Head1" runat="server"> |
<title></title> |
</head> |
<body> |
<form id="form1" runat="server"> |
<asp:ScriptManager ID="ScriptManager1" runat="server"> |
</asp:ScriptManager> |
<div style="overflow:hidden;"> |
<div style="height: 150px; overflow:auto; border:solid 1px black; position:relative;"> |
<telerik:radupload |
id="RadUpload1" |
runat="server" |
InitialFileInputsCount="10" |
EnableFileInputSkinning="true"/> |
</div> |
</div> |
</form> |
</body> |
</html> |
Thanks,
Jeff