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:08 by ADMIN
Selecting tabs with same names from the drop down menu always selects the first one.
Completed
Last Updated: 09 Nov 2018 09:13 by ADMIN
When you have the TabStripPlacement property set to something other than Top and you try to hide the TabControl border by setting the BorderThickness property to 0. The border is still shown. If you have TabStripPlacement set to Top the border disappears.

As a workaround set the BorderBrush property of the RadTabControl to "Transparent".
Completed
Last Updated: 19 Jan 2023 14:50 by ADMIN
Created by: Jorge
Comments: 1
Category: TabControl
Type: Feature Request
2

Currently, when scrolling tabs in a TabControl using the mouse wheel, the direction of the scroll is the opposite as tab controls of many other applications, for example all web browsers scroll tabs in the opposite direction as the Telerik RadTabControl.

This behaviour may cause frustration in the end user and damages the user experience. I think it's necessary to expose a way to allow inverting the RadTabControl mouse wheel scroll direction.

Completed
Last Updated: 22 Mar 2021 07:13 by ADMIN
Release LIB 2021.1.322
This happens if you use the DropDownOpened event of RadTabControl in order to reorder the DropDownItemsSource of the event arguments. In this case, the synchronization of the selection between the drop down and the tab items is broken.

To work this around, you can disable the default overflow button and implement a custom one in the AdditionalContent of RadTabControl. Check the attached project for a sample implementation.
Unplanned
Last Updated: 30 Jul 2020 08:42 by ADMIN
The scroll buttons are visible when the visible area is enough to display all tabs and the TabStripPlacement is set to Left/Right.
Completed
Last Updated: 14 Oct 2019 11:05 by ADMIN
Release LIB 2019.3.1014

TabControl's TabItems aren't properly updated on attempt to change the theme palette variation runtime until any of the items is selected. Check the following video - https://www.screencast.com/t/jMj0EZqFfy.

There are several possible workarounds which include:

  • Clearing all merged resource dictionaries and re-merging them
  • Increasing and decreasing the height of the MainWindow by 1 after loading the chosen palette to force the refresh
Declined
Last Updated: 10 Nov 2016 08:28 by ADMIN
Tabcontrol doesn't work correctly when we set the properties TabOrientation="Vertical" and AllTabsEqualHeight="False". The Header are always Aligned left no matter the value align property.

DECLINED: This issue cannot be reproduced with R3 2016 release version.
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);
}
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.
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)
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.
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. 
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.
Completed
Last Updated: 25 Nov 2019 12:03 by ADMIN
Release LIB 2019.3.1125

Drag and drop from Visual Studio Toolbox to the designer area doesn't allow you to drop the corresponding control inside the content of the selected tab item. 

To work this around, add a Grid panel with transparent background inside the RadTabItem's in XAML. You can do this also  through the toolbox.

 <telerik:RadTabItem x:Name="RadTabItem1" Header="Tab item 1">
	<Grid Background="Transparent" />
 </telerik:RadTabItem>

Completed
Last Updated: 11 Jun 2019 10:03 by ADMIN
Release R2 2019 SP1
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: 20 Apr 2018 12:35 by Vladimir
ADMIN
Created by: Vladimir Stoyanov
Comments: 0
Category: TabControl
Type: Bug Report
1