Completed
Last Updated: 25 May 2023 13:34 by ADMIN
Unplanned
Last Updated: 21 Jun 2018 06:30 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: TabControl
Type: Feature Request
1
RadTabControlBase expose a protected method called OnPreviewSelectionChanged that should raise the event PreviewSelectionChanged event. This means that you should be able to override it and implement additional logic if necessary.

However, the method is never used in the code and therefore it is not fired when the PreviewSelectionChanged event raises. 

Use the method to raise the event.
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

			
Completed
Last Updated: 28 Oct 2019 11:04 by ADMIN
Release LIB 2019.3.1028
ADMIN
Created by: Petar Mladenov
Comments: 2
Category: TabControl
Type: Bug Report
2
When you select the RadTabItems via Keyboard or Mouse, Narrator or other Accessibility tools like NVDA do no read the selected tab.

This is a bug in the RadTabControlAutomaitonPeer / RadTabItemAutomationPeer's code.

Usually screen readers read "Selected Tab One", "Selected Tab 2". This is how MS TabControl is read actually.

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>
Unplanned
Last Updated: 17 Mar 2017 14:36 by ADMIN
Unplanned
Last Updated: 17 Feb 2017 14:40 by ADMIN
By default, when selecting through the tab items, the first focusable element within each RadTabItem will gain focus. This is the behavior of the standard  RadTabItem as well. Provide an option to disable this default selection through a boolean property.
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.
Unplanned
Last Updated: 03 Jan 2017 21:08 by ADMIN
Selecting tabs with same names from the drop down menu always selects the first one.
Unplanned
Last Updated: 03 Jan 2017 20:53 by ADMIN
Workaround:
Use the PreviewMouseLeftButtonUp and PreviewMouseLeftButtonDown events of the DropDownMenuItem. Handle the first event and invoke DropDownMenuItem.MouseLeftButtonUpEvent in the second in order to workaround the MouseLeftButtonUp event fired from the DropDownMenuButton and to call the logic for selecting the tabitem only when the dropdown menuitem is clicked (not just hovered). 

<Style TargetType="telerikTabControl:DropDownMenuItem">		
        <EventSetter Event="PreviewMouseLeftButtonUp" Handler="DropDownMenuItem_PreviewMouseLeftButtonUp" />
        <EventSetter Event="PreviewMouseLeftButtonDown" Handler="DropDownMenuItem_PreviewMouseLeftButtonDown" />
</Style>

private void DropDownMenuItem_PreviewMouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{		
		e.Handled = true;
}

private void DropDownMenuItem_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
	var item = (sender as DropDownMenuItem);
	MouseButtonEventArgs mouseEventArgs = new MouseButtonEventArgs(Mouse.PrimaryDevice, 0, MouseButton.Left);
	mouseEventArgs.RoutedEvent = DropDownMenuItem.MouseLeftButtonUpEvent;
	item.RaiseEvent(mouseEventArgs);
}
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
Declined
Last Updated: 09 Sep 2016 08:55 by ADMIN
DECLINED: This issue is not reproducible with R2 SP1 2016 Release.
Unplanned
Last Updated: 03 Jan 2017 21:09 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: TabControl
Type: Bug Report
3
When you have implicit DataTemplates applied to items the binding expression is lost on selection changed.
Completed
Last Updated: 12 Nov 2014 09:24 by ADMIN
Fixed in LIB version: 2014.3.1103
Unplanned
Last Updated: 03 Jan 2017 21:20 by ADMIN
The SelectedTabContent is not added when the control is loaded in memory and a we try to create a ImageSource out of the UserControl hosting the TabControl
Unplanned
Last Updated: 03 Jan 2017 20:58 by ADMIN
When a TabItem has a width (and the TabControl - don't) and if you try to resize the window so that the width of the window is less than the width of the TabItem - the TabItems start jumping
Unplanned
Last Updated: 03 Jan 2017 20:57 by ADMIN
When a RadDocking is located inside a RadTabControl and the RadPaneGroup contains only one RadPane the content is scrolled(if located inside a ScrollViewer)