This is a migrated thread and some comments may be shown as answers.

RadProgressArea not showing file name ?

2 Answers 56 Views
ProgressArea
This is a migrated thread and some comments may be shown as answers.
Jay
Top achievements
Rank 2
Iron
Iron
Veteran
Jay asked on 23 Apr 2013, 09:13 PM
I'm testing RadProgressArea with RadAsyncUpload, and it is not showing the file name. Instead, it just has

Uploading File: Uploading Files...

I'm using it as
<table>
    <tr id="trUpload" runat="server">         <td><div style="padding-bottom:15px">File</div></td>         <td><div style="width:5px;"/></td>         <td>             <telerik:RadAsyncUpload runat="server" ID="rauUpload" MultipleFileSelection="Automatic" EnableInlineProgress="false" />             <telerik:RadProgressManager runat="server" ID="rpmUpload" />             <telerik:RadProgressArea runat="server" ID="rpaUpload" />         </td>     </tr> </table>

2 Answers, 1 is accepted

Sort by
0
Hristo Valyavicharski
Telerik team
answered on 24 Apr 2013, 12:11 PM
Hi Jay,

To display file name you will have to configure RadProgressArea in the following manner:
<telerik:radprogressmanager id="RadProgressManager1" runat="server" />
<telerik:radprogressarea id="RadProgressArea1" runat="server" displaycancelbutton="True"
    progressindicators="FilesCountBar,
                          FilesCount,
                          FilesCountPercent,                     
                          SelectedFilesCount,                     
                          CurrentFileName,                     
                          TimeElapsed,                     
                          TimeEstimated">
</telerik:radprogressarea>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Initiate Process" />

For more details please take a look at the RadProgressArea Custom Progress.

Regards,
Hristo Valyavicharski
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Jay
Top achievements
Rank 2
Iron
Iron
Veteran
answered on 24 Apr 2013, 01:53 PM
Yes, I've done that as well. By default, it shows (or ought to show) all the indicators. I've also configured it with just CurrentFileName and it shows "Uploading Files..." rather than the file name.

It looks like this was due to a bug in an older version. I updated to the most current version we had on hand (Q3 2012) and it works now.
Tags
ProgressArea
Asked by
Jay
Top achievements
Rank 2
Iron
Iron
Veteran
Answers by
Hristo Valyavicharski
Telerik team
Jay
Top achievements
Rank 2
Iron
Iron
Veteran
Share this question
or