Declined
Last Updated: 04 Apr 2022 15:11 by ADMIN
Created by: haguila
Comments: 2
Category: ProgressBar
Type: Feature Request
0
Hi, since months we were using radProgressBar & radProgressArea without any problem.  
There is no discussion, they are great, but we face some kind of formal issue, related to the information presented by RadProgressArea.

The point is that the prefixes used for presenting data are not standardized.

In first place, as you can see at http://www.telerik.com/products/aspnet-ajax/progress-bar.aspx , values prefixes are used inconsistently: KiloByte/s is represented as "kB" (Kilo prefix is lower case) versus MegaByte/s is represented "MB" (Mega prefix is upper case).

Beyond that, is very difficult to establish if the magnitudes of bytes are really "Kilo" (10^3=1000) and "Mega" (10^6=1000000) or "Kibi" (2^13=1024) and "Mebi" (2^23=1048576). 

This becomes particularly significant when we speak about Gigas or Gibis. 

We know this level of standardization surpass the normal use exigency, but we beg you consider the normalization of this prefixes as established by IEC 80000-13:2008 standard (KiB, MiB, GiB).

Best regards;
Claudio Lacivita
Completed
Last Updated: 14 Sep 2021 12:28 by ADMIN
Release Q3 2015
ADMIN
Created by: Slav
Comments: 0
Category: ProgressBar
Type: Bug Report
0
The label of RadProgressBar is duplicated with some cultures.
Declined
Last Updated: 15 Oct 2020 19:02 by ADMIN
Created by: Kasim
Comments: 2
Category: ProgressBar
Type: Feature Request
1

			
Completed
Last Updated: 07 Apr 2020 16:48 by ADMIN
Created by: Chidinma
Comments: 1
Category: ProgressBar
Type: Feature Request
0
Extend the progress bar functionality to have a multicoloured chunks option. 

For example, I've got an action which requires 4 steps. I would like to set the chunk for the current step to have a different colour from that of a completed step. Please see attached file sample.
Completed
Last Updated: 08 Nov 2018 14:30 by ADMIN
Error: Sys.InvalidOperationException: Two components with the same id 'RadProgressBar1' can't be added to the application.

Workaround: Use RadScriptManager

		<asp:ScriptManager ID="Scriptmanager1" runat="server" /> <-- issue
		<%--<telerik:RadScriptManager runat="server" ID="rsm1"></telerik:RadScriptManager>--%> <-- workaround
		<asp:UpdatePanel ID="Updatepanel1" runat="server">
			<ContentTemplate>
					<asp:Button ID="Button1" Text="AJAX" runat="server" />
	
					<telerik:RadProgressBar runat="server" ID="RadProgressBar1" />
			</ContentTemplate>
		</asp:UpdatePanel>