Unplanned
Last Updated: 11 Aug 2016 14:05 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: TabControl
Type: Bug Report
2
In the TabControl Databinding example, the TabControl ItemTemplate contains Button controls that has to be replaced with RadButtons.
Completed
Last Updated: 14 Apr 2015 15:28 by ADMIN
ADMIN
Created by: Pana
Comments: 0
Category: TabControl
Type: Bug Report
2
RadTabControl with ContentPresenter replaced by RadTransitionControl brakes design time in VisualStudio 2010
Completed
Last Updated: 30 Oct 2018 07:30 by ADMIN
The DropDownMenu is incorrectly positioned when the default TabStripPlacement is changed - if the TabStripPlacement is set to Bottom/Left/Right, the DropDownMenuis displayed at the top left corner of the screen.
Completed
Last Updated: 09 Oct 2014 13:21 by ADMIN
The tab strip is misplaced when the TabStripPlacement property is set to Left

Fixed in Q3 2014
Unplanned
Last Updated: 03 Jan 2017 21:09 by ADMIN
The scroll buttons are not correctly displayed when the TabStripPlacement is set to Right and there is no default selection (the IsDefaultItemSelected is set to False).

As a workaround set the RadTabControl's IsDefaultItemSelected property to True or select a RadTabItem manually through its IsSelected property.
Completed
Last Updated: 07 Apr 2016 12:26 by ADMIN
The top border of the control is missing when the TabStripPlacement is set to Left

Will be available in R2 2016 Release.
Unplanned
Last Updated: 12 Mar 2019 09:18 by ADMIN

When the RadTabControl is placed in a RadBusyIndicator, one of the navigation repeat buttons is initially disabled.

As a workaround, you can invoke the ScrollToHorizontalOffset method of the ScrollViewer inside the RadTabControl in a Dispatcher in the Loaded event:

 private void RadTabControl_Loaded(object sender, RoutedEventArgs e)
        {
            var tabControl = sender as RadTabControl;
            var scrollViewer = tabControl.ChildrenOfType<ScrollViewer>().FirstOrDefault();
            Dispatcher.BeginInvoke(new Action(() =>
            {
                scrollViewer.ScrollToHorizontalOffset(5);
            }));
        }