Hi,
I am using RadUpload control inside a table which use the style="position:absolute" and this is blocking the RadUpload select button to open the file select dialogue window. I dont know what could be the fix for this and i have to apply the style on the panel.
I also tried with Position:relative still not working.
Code:
<table cellpadding="0" class="UploadArea" style="position:absolute" cellspacing="0" width="100%">
<tr>
<td style="vertical-align: text-top">
Upload General Information Documents
</td>
</tr>
<tr>
<td>
<telerik:RadProgressManager ID="RadProgressManager1" runat="server" />
<telerik:RadUpload ID="RadUpload1" runat="server" InputSize="70" MaxFileInputsCount="5"
TargetFolder="~/UploadFiles">
</telerik:RadUpload>
<br />
<telerik:RadProgressArea ID="RadProgressArea1" runat="server" DisplayCancelButton="True"
ProgressIndicators="TotalProgressBar, TotalProgress, RequestSize, FilesCount, FilesCountPercent, SelectedFilesCount, CurrentFileName, TimeElapsed, TimeEstimated, TransferSpeed"
Skin="Vista">
</telerik:RadProgressArea>
</td>
</tr>
</table>
- Srini