I have a custom progress indicator:
And it displays correctly, but it no longer displays images. Just displays like it is in the screen shot. Any help?
<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?