Unplanned
Last Updated: 20 Apr 2018 12:35 by Vladimir
ADMIN
Created by: Vladimir Stoyanov
Comments: 0
Category: TabControl
Type: Bug Report
1

			
Completed
Last Updated: 14 Oct 2019 10:44 by ADMIN
Release LIB 2019.3.1014
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: TabControl
Type: Bug Report
1

			
Unplanned
Last Updated: 03 Jan 2017 21:24 by ADMIN
Workaround: Set HorizontalScrollBarVisibility property to Visible in order to show the scrollbar: 
<telerik:RadTabControl ScrollViewer.HorizontalScrollBarVisibility="Visible" .../>

or use Loaded event of TabControl and change the Height in order to trigger SizeChanged:
private void xTab_Loaded(object sender, RoutedEventArgs e)
{
    this.Height++;
    this.Height--;
}
Unplanned
Last Updated: 04 Jan 2017 14:34 by Anthony
Created by: Anthony
Comments: 1
Category: TabControl
Type: Bug Report
1
In version 2016.2.613.45 of the Office2013 Theme, there is a problem in the control template for the RadTabControl. The ContentBorder element properly gets it's BorderThickness from the TemplatedParent, but the PlacementStates VisualStates override it with hard-coded Thickness (0,1,1,1 in the case of the "Left" Visual State) in their storyboards rather than doing an appropriate transform of the Thickness. This makes it impossible to override the BorderThickness for the control in any state other than the default layout without copying and replacing the entire control template. This appears to be a change in behavior since the (Februray 2016?) release, but I cannot be sure as the old theme files were uninstalled during the upgrade and the telerik.windows.controls.navigation.baml file is not properly decompiled in JustDecompile.
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: 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: 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: 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: 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: 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: 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