Completed
Last Updated: 28 Feb 2012 03:43 by ADMIN
ADMIN
Created by: Boryana
Comments: 0
Category: Buttons
Type: Bug Report
6
When a RadMenuButtonItem is in the menu dropdown, its Click event fires twice.
Completed
Last Updated: 25 Nov 2010 04:36 by Jesse Dyck
The mouse right button should not fire the click event of the radbutton. A check should be performed, which only fires the click in case it was clicked by the left button. Possibly, this check should be performed at the TPF level, so it will be available for all controls.
Unplanned
Last Updated: 06 Nov 2018 09:13 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: Buttons
Type: Bug Report
5
Workaround: disable the default scaling and adjust the font and minimum size

        Me.RadRadioButton1.Font = New Font("Arial", 12, FontStyle.Regular)
        Me.RadRadioButton1.ButtonElement.CheckMarkPrimitive.MinSize = New Size(20, 20)
        Dim radioPrimitive As RadioPrimitive = Me.RadRadioButton1.ButtonElement.CheckMarkPrimitive.FindDescendant(Of RadioPrimitive)()
        radioPrimitive.MinSize = New Size(21, 21)

    Public Class CutsomRadioButton
        Inherits RadRadioButton
        Protected Overrides Sub ScaleControl(factor As SizeF, specified As BoundsSpecified)
             
        End Sub
    End Class
Completed
Last Updated: 14 Oct 2014 06:13 by ADMIN
FIX. RadRadioButton does not show focus cues before tab key is pressed.
Completed
Last Updated: 20 Feb 2014 16:09 by ADMIN
Notification and changes not send from control to bound object when ToggleState value is changed from RadCheckBox user input.


RESOLUTION: Use the new property named CheckState for simple data-binding scenarios. This property behave in same way as ToggleState but can be used in simple-data binding scenarios. Also, consider the corresponding events named:

CheckStateChanging and CheckStateChanged event.

 
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Buttons
Type: Bug Report
4
RadRadioButton behaves differently from the Microsoft RadioButton in terms of keyboard navigation.
Completed
Last Updated: 30 May 2016 08:22 by ADMIN
To reproduce:
- Set the IsThreeState to true.
- Set the state to  Indeterminate.
- Disable the checkbox. 
- Set the state to checked.
- The state is not changed. 

This is working fine if another state is used before disabling the control.

Workaround:
- Always set the state before you disable the control.
 
Completed
Last Updated: 14 Apr 2016 11:26 by ADMIN
Setting check box to be indeterminate and disabled in design time results in incorrect state when the application is started. Setting those states after the InitializeComponent call works fine.
Completed
Last Updated: 13 Apr 2016 14:12 by ADMIN
ADMIN
Created by: Ivan Petrov
Comments: 0
Category: Buttons
Type: Bug Report
4
Steps to reproduce:
1. Add two check boxes to a form
2. Set the Checked property of one to true
3. Set their enable property to false
4. Set the theme to TelerikMetroBlue 

Run the project and you will see that both check boxes look the same - disabled and unchecked.

The same applies to Office2010Blue and RadRadioButton

Workaround it by enabling the checkboxes for a moment and then disabling them. 
Completed
Last Updated: 15 Nov 2010 09:12 by ADMIN
When disabled RadRadioButtons should beep their current state.
Completed
Last Updated: 19 Aug 2011 10:03 by ADMIN
FIX. RadDropDownButton, does not show focus cues, until the first time it is clicked.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
If the CheckBox is not checked and the box is disabled it is not possible to programmatically change the Checked state, i.e. control remains visible as unchecked until it is enabled. Tested with Office2010Blue Theme

Please, test with Office2012Light
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
With Office2010Blue RadRadioButton not render correctly its state in disabled state if programmatically change the Checked state, i.e. control remains visible unchecked
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ToggleStateChanging args are not giving the old value of the button.
Completed
Last Updated: 19 Jun 2017 12:20 by ADMIN
To reproduce: apply the Window8 theme to the entire application containing a RadButton and a RadCheckBox. Change the color of RadButton to Green and handle the RadCheckBox.ToggleStateChanged event in order to enable/disable the button. You will notice that after disabling once the button enabling it again, the ButtonFillElement.NumberOfColors property is set to 1 and gradient color becomes solid. Please refer to the attached sample project and gif file.

Workaround:

int numberOfColors = 0;

private void radCheckBox1_ToggleStateChanged(object sender, Telerik.WinControls.UI.StateChangedEventArgs args)
{
    if (args.ToggleState == Telerik.WinControls.Enumerations.ToggleState.On)
    {
        this.radButton1.Enabled = true;
        this.radButton1.ButtonElement.ButtonFillElement.NumberOfColors = numberOfColors;
    }
    else
    {
        numberOfColors = this.radButton1.ButtonElement.ButtonFillElement.NumberOfColors;
        this.radButton1.Enabled = false;
    }
}
Completed
Last Updated: 05 Jun 2014 15:19 by ADMIN
Drag a button to the form and in design time set its size to 45,80
Completed
Last Updated: 28 Jul 2015 14:30 by ADMIN
No matter what is the toggle state of the ToggleButton, when disable always shows as ToggleState.Off
Completed
Last Updated: 04 Aug 2008 12:48 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: Buttons
Type: Bug Report
2
The theme is not applied properly when the button is toggled off.
Unplanned
Last Updated: 17 Apr 2024 14:31 by ADMIN
Please use the following code snippet and try to resize the button as it is illustrated in the attached gif file: 
            this.radButton1.ButtonElement.ImagePrimitive.SvgImage = RadSvgImage.FromFile(@"..\..\image.svg");
            this.radButton1.TextImageRelation = TextImageRelation.TextBeforeImage;
            this.radButton1.ButtonElement.ImagePrimitive.ImageLayout = ImageLayout.Zoom; 
            this.radButton1.ButtonElement.ImagePrimitive.StretchVertically = true;
            this.radButton1.ButtonElement.ImagePrimitive.StretchHorizontally = true;
Completed
Last Updated: 02 Feb 2023 09:35 by ADMIN
Release R1 2023
RadToggleSwitch can be activated and the slider can be dragged by using the right mouse button as well. That's not supposed to happen.
1 2 3 4 5