Completed
Last Updated: 13 Mar 2024 08:49 by ADMIN
Release 2024.1.312
I added a RadLabelElement, and RadButtonElement (height 50px) to RadStatusStrip. This changes the height of the whole status strip as expected. After minimizing, then restoring the form to normal the size of the status strip is its default one.
Completed
Last Updated: 22 Jul 2019 13:40 by ADMIN
Release R3 2019 (LIB 2019.2.729)

When trying to collapse the ProgressBar inside the StatusStrip, the ProgressBar is been hidden not collapsed.

Workaround:
radStatusStrip1.Items.Remove(radProgressBarElement1)
Unplanned
Last Updated: 19 Jun 2019 05:34 by ADMIN

So, when I drop a RadStatusStrip on my radForm. In that object, I then add a RadWaitingBarElement. Then I change SPRING = TRUE and WAITINGSTYLE = "Dash", all in the properties window.  At design time, it looks good.  However, at run time, it reverts back to the default bar and just scrolls across the screen.  Did I find a bug? Do I need to change other properties of the RadWaitingBarElement?  Also, I noticed that when I change the WaitingIndicators in property page, those changes to take affect either. Very confusing and frustrating

 

 We are using Telerik version 2018.3.911.40

Unplanned
Last Updated: 20 Nov 2017 14:09 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: StatusStrip
Type: Bug Report
1
To reproduce:
1. Add a RadStatusStrip at design time.
2. Add a RadWaitingBarElement at design time.
3. In the Properties section of Visual Studio set the WaitingStyle property to DotsSpinner. You will notice that the WaitingStyle is not serialized. If you run the application the default WaitingStyle is displayed.

Workaround:

Set the WaitingStyle  programmatically at run time. 
Unplanned
Last Updated: 19 Jun 2017 10:49 by ADMIN
To reproduce: please run the attached sample project and follow the steps illustrated in the gif file.
Completed
Last Updated: 20 Jan 2015 14:32 by ADMIN
Changing the ForeColor property of the BorderPrimitive of the RadStatusStripElement has no effect.
Completed
Last Updated: 05 Nov 2014 12:49 by ADMIN
1. Add RadForm and set design time: 
this.AutoSize = true;
this.WindowState = FormWindowState.Maximized;
this.Size = new Size(750, 500); 
2. Add RadMenu with more than 10 menu items. 
3. Add RadStatusStrip with few items
4. When run the application and the items from strip are not visible 

Workaround: 
Restore the WindowState of form to Normal at design time and set the WindowState to Maximized run time in the Load event of form. Here is the snippet: 
private void RadForm1_Load(object sender, EventArgs e)
{
    this.WindowState = FormWindowState.Maximized;
}
Completed
Last Updated: 08 Jul 2014 08:43 by ADMIN
To reproduce:
- Set RadStatusStrip SizingGrip property to false.
- When you move the mouse to the right corner its cursor is changed and you can resize.

Workaround:
- Completely remove the element with the following code:
int lastIndex = this.radStatusStrip1.StatusBarElement.Children.Count;  
this.radStatusStrip1.StatusBarElement.Children.RemoveAt(lastIndex - 1);

Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
When you add an element to RadStatusStrip, for example RadProgressBarElement, you can't set its Visibility to Hidden/Collapsed
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: StatusStrip
Type: Bug Report
0
RadProgresBarElement's Visibility property does not work properly when it is in RadStatusStrip control.
Completed
Last Updated: 20 Mar 2014 07:23 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category: StatusStrip
Type: Bug Report
1
To reproduce: Add a RadStatusStrip and a button element inside. Set the button's ToolTipText, start the application, hover on the element and you will notice that the tooltip will not show.
Completed
Last Updated: 29 Apr 2011 04:36 by ADMIN
FIX. RadStatusStrip's label element ForeColor should be black with Office2010Blue theme.