Unplanned
Last Updated: 21 Sep 2020 08:25 by ADMIN
Pressing the Home and End keys selects the first/last items even if they are collapsed/hidden.
Declined
Last Updated: 11 Aug 2021 15:47 by Petar
The DropDownContentTemplate is not applied to items in the dropdown menu that are dynamically added. 
Completed
Last Updated: 13 May 2022 18:18 by ADMIN
Release LIB 2022.2.516 (16 May 2022)
The RadTabItem elements are not correctly displayed with long values set to the Header property when the TabOrientation="Vertical" and the used theme is Office2019.
Unplanned
Last Updated: 20 Jun 2024 09:41 by Martin Ivanov
Currently, if you have multiple tabs and the scrolling in the tabstirp area gets enabled, you can scroll using the mouse wheel. However, there is no behavior that handles the swipe gesture on touch devices (which is the alternative to the mouse wheel action). 
Add swipe scrolling support.
Declined
Last Updated: 09 Sep 2016 08:55 by ADMIN
DECLINED: This issue is not reproducible with R2 SP1 2016 Release.
Completed
Last Updated: 05 Feb 2015 16:28 by ADMIN
ADMIN
Created by: Kiril Vandov
Comments: 0
Category: TabControl
Type: Feature Request
0
A System.Windows.Documents.Hyperlink' is not a Visual or Visual3D Exception is thrown when you click on a Hyperlink inside a RadTabControl and then try to scroll using the MouseWheel


Available in LIB version: 2014.3.1409
Completed
Last Updated: 12 Feb 2019 16:05 by ADMIN
When pressing the Alt key, the access key of a given element must be displayed. Inside the Header of a TabItem it is not. The issue is not reproducible with the standard MS TabItem. It seems that it is related to the Foreground binding of the control. There is a workaround as shown below.

<telerik:RadTabControl>
    <telerik:RadTabItem >
        <telerik:RadTabItem.Header>
            
                <AccessText Text="_Tab 1"
                            Foreground="{Binding RelativeSource={RelativeSource AncestorType=telerik:RadTabItem},
                            Path=Foreground}"/>
        </telerik:RadTabItem.Header>
    </telerik:RadTabItem>
</telerik:RadTabControl>
Completed
Last Updated: 31 Jan 2019 12:09 by ADMIN
error appears when the control is placed inside a RadTabItem

Scheduled for:
The fix for this issue will be available with LIB (version 2019.1.204) scheduled for publishing on Monday, 4th February 2019.
Completed
Last Updated: 22 May 2019 11:25 by ADMIN
Release LIB 2019.2.527 (05/27/2019)
A design time error occurs when referencing NoXaml assemblies. 
The error message is the following: "Cannot find resource named 'RadButtonStyle'. Resource names are case sensitive."
Completed
Last Updated: 06 Jun 2019 06:50 by ADMIN
Release LIB 2019.2.610 (06/10/2019)
In R2 2019 there is a regression bug in RadTabControl.
Clicking with mouse middle button over a tab removes it from the Items collection.
====
Workaround: In R2 2019 or for particular items, user can handle PreviewMouseDown event of the RadTabItem and if the pressed button is middle - handle the event. 
private void RadTabItem_PreviewMouseDown(object sender, MouseButtonEventArgs e)
       {
           if (e.ChangedButton == MouseButton.Middle)
           {
               e.Handled = true;
           }
       }
Completed
Last Updated: 27 Nov 2020 14:34 by ADMIN
Release LIB 2020.3.1130 (11/30/2020)
The Align property is not respected in the following themes: Windows8Touch, Office2019
Completed
Last Updated: 16 Nov 2022 14:27 by ADMIN
Release LIB 2022.3.1121 (21 Nov 2022)
When there are tabs present which have their Visibility property set to Collapsed and the ScrollMode of the control is Item, scrolling the items via the arrow buttons skips items unexpectedly.
1 2 3 4