Declined
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 2
Category: Buttons
Type: Bug Report
17
DropDownButton is leaking.
Unplanned
Last Updated: 05 Jan 2017 07:58 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: Buttons
Type: Bug Report
8
When a RadMenu/RadContextMenu is used as DropDownContent of a SplitButton/DropDownButton, the DropDownContent  cannot be closed after sub menu items are displayed
Completed
Last Updated: 04 Jan 2017 12:51 by ADMIN
SplitButton throws a design time exception with implicit styles if you've included Diagrams.Extensions.xaml
Unplanned
Last Updated: 05 Jan 2017 07:58 by ADMIN
Arg_COMException in some cases when used with RoutedUICommand
Unplanned
Last Updated: 05 Jan 2017 07:58 by ADMIN
Update the Buttons AutomationPeer to use the AutomationProperties attached properties.

As a workaround you can create a custom button control deriving from RadButton. That would allow you to create a custom AutomationPeer class that can return the AutmationProperties.Name value to a narrator application
Completed
Last Updated: 08 Apr 2024 14:24 by ADMIN
Release 2024.1.408

NullReferenceException is thrown if you set the IsChecked property of the RadToggleSwitchButton before the button is added to the visual tree. This happens only when the switch animation is disabled.

To work this around, you can set the AnimationManager.IsAnimationEnabled property of the button to True initially. And then set it back to False on Loaded of the button.

Unplanned
Last Updated: 05 Jan 2017 07:58 by ADMIN
Completed
Last Updated: 10 Oct 2016 14:23 by ADMIN
The issue can be reproduced with DatePicker inside of ComboBoxItem ItemTemplate.

Available in LIB Version 2016.3.1010, it will be also available in the 2016 R3 SP1.
Completed
Last Updated: 09 Oct 2020 13:24 by ADMIN
Release LIB 2020.3.1012
A StackOverflowException occurs when you press a RadDropDownButton placed into the DropDownContent of another RadDropButton.

To work this around, subscribe for the LostMouseCapture event of the parent drop down button and handle it.

private void DropDownButton_LostMouseCapture(object sender, MouseEventArgs e)
{
      e.Handled = true;
}
Unplanned
Last Updated: 05 Jan 2017 09:52 by ADMIN
MouseLeave event is never fired after we change the Them of the controls from a control located in the DropDownContent. Therefor the controls IsMouseOver property is true and looks like it is hovered.
Completed
Last Updated: 25 May 2023 13:36 by ADMIN
If you have a tooltip on a button and focus the button before hovering it, the tooltip is not shown
Unplanned
Last Updated: 28 Sep 2023 10:49 by ADMIN
The UI freezes if the DropDownContent of RadDropDownButton has a native Run element and the CloseOnPopupMouseLeftButtonUp property is set to True.
Declined
Last Updated: 04 Feb 2016 15:25 by ADMIN
Property values are inherited from the logical parent and not visual parent (as in SL). Thus ContentPresenter and ContentControls children doesn't get the new Foreground property. This can not be workarounded with VisualStates, but Triggers only

Reason for declination: WPF limitation
Unplanned
Last Updated: 03 Jan 2017 21:09 by ADMIN
DropDownButton's DropDownContent blinks when its template and its parent's ControlTemplate are changed at runtime
Completed
Last Updated: 19 Oct 2016 10:48 by Dominic
ADMIN
Created by: Peshito
Comments: 1
Category: Buttons
Type: Bug Report
1
There is a Dispatcher call without checking in the dispatcher call for NULL. This lead to NullReferenceException in huge production code.



Available in R3 2016 SP
Declined
Last Updated: 11 Dec 2017 13:02 by ADMIN
ADMIN
Created by: Lance | Manager Technical Support
Comments: 0
Category: Buttons
Type: Bug Report
1
Custom property values for BorderThickness and BorderBrush are replaced after button click.

To reproduce, use the following code, you'll see that a highlighted border appears after clicking the button.

<telerik:RadButton Background="Gray"
                           Foreground="White"
                           BorderThickness="0"
                           BorderBrush="Transparent"
                           Content="click me"
                           HorizontalAlignment="Center"
                           VerticalAlignment="Center" />

Reason for declination: 
The border that you see is the focused state of RadButton, which is a separate visual and its BorderThickness is not template-bound to the BorderThickness of the control intentionally. We believe that a control should have focus even if its default border is removed. In our latest themes we are trying to keep this behavior. In the Office2016 theme there is an exposed palette property, which you can use in code-behind if you want to remove the focus: 
Office2016Palette.Palette.FocusThickness = new Thickness(0);
Completed
Last Updated: 02 Apr 2018 10:03 by ADMIN
The current workaround we can offer is to define the following style for the RadioButton element:

			<Style TargetType="RadioButton" BasedOn="{StaticResource RadioButtonStyle}">
				<Style.Triggers>
					<Trigger Property="IsChecked" Value="True">
						<Setter Property="BorderBrush" Value="{telerik1:FluentResource ResourceKey=AccentBrush}" />
					</Trigger>
				</Style.Triggers>
			</Style>

Where 
        xmlns:telerik1="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls"
Completed
Last Updated: 05 Mar 2019 11:09 by ADMIN
The Command is not respected when clicking over the Hyperlink
Completed
Last Updated: 06 Nov 2019 09:36 by ADMIN
Release LIB 2019.3.1111
1 2