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

RadProgressArea Only Shows Text

1 Answer 55 Views
Upload (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Richard M
Top achievements
Rank 1
Richard M asked on 09 Feb 2011, 08:09 PM
I have a custom progress indicator:

<telerik:RadProgressManager ID="progressManager" runat="server" RefreshPeriod="250" SuppressMissingHttpModuleError="true" />
<telerik:RadProgressArea ID="progressArea" Width="100%" runat="server"
    ProgressIndicators="FilesCountBar, FilesCount, FilesCountPercent, SelectedFilesCount, CurrentFileName" />

private void UpdateProgress(double current, double total, string actionName)
{
    progressArea.Visible = true;
    var progress = RadProgressContext.Current;
    progress.SecondaryTotal = total;
    var percent = Math.Floor((current / total) * 100d);
    progress.SecondaryValue = current.ToString();
    progress.SecondaryPercent = percent.ToString();
    progress.CurrentOperationText = String.Format("{0}", actionName);
}

And it displays correctly, but it no longer displays images.  Just displays like it is in the screen shot.   Any help?

1 Answer, 1 is accepted

Sort by
0
Dimitar Terziev
Telerik team
answered on 14 Feb 2011, 04:15 PM
Hi Richard,

Could you verify under which browsers you are experiencing this problem.
Also is it possible to send a live url so we could see this error being reproduced?
Looking forward to your answer.

Kind regards,
Dimitar Terziev
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Upload (Obsolete)
Asked by
Richard M
Top achievements
Rank 1
Answers by
Dimitar Terziev
Telerik team
Share this question
or