Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Petar Mladenov
Comments: 0
Category: TabControl
Type: Feature Request
4
The animation when moving tab is mandatory for a proper user experience.
Unplanned
Last Updated: 03 Jan 2017 20:47 by ADMIN
ADMIN
Created by: Tina Stancheva
Comments: 0
Category: TabControl
Type: Feature Request
4
Improve the design-time support of the TabControl. For example add an option to add new RadTabItems in the control.
Unplanned
Last Updated: 03 Jan 2017 20:37 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: TabControl
Type: Bug Report
4
Add a visual state for the selected tab item representation in the DropDown menu of the TabControl.
Unplanned
Last Updated: 03 Jan 2017 20:35 by Miroslav Paskov
Created by: Miroslav Paskov
Comments: 0
Category: TabControl
Type: Feature Request
3
The selected item could have a different header template so that it will be differentiated from the rest of the  tabs.
Unplanned
Last Updated: 03 Jan 2017 20:34 by ADMIN
ADMIN
Created by: Tina Stancheva
Comments: 0
Category: TabControl
Type: Bug Report
3
The TabControl ScrollMode property doesn't work as expected when set to "Item"
Unplanned
Last Updated: 03 Jan 2017 20:34 by ADMIN
Display in overflow menu only the items that are not visible in the tab strip.
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.
Unplanned
Last Updated: 03 Jan 2017 20:44 by ADMIN
Can't apply transitions when changing the visual state of the RadTabControl or its items
Unplanned
Last Updated: 03 Jan 2017 20:44 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: TabControl
Type: Bug Report
3
The CommonStates of the control aren't applied and this is why you can't add any storyboards for the normal and disabled state of the control.
Won't Fix
Last Updated: 06 Mar 2020 10:49 by ADMIN
If you define two UserControls in a project and you add two RadTabControls - one RadTabControl per UserControl, then in design-time you can only change the selection of one of the tab components.
Won't Fix
Last Updated: 23 Jan 2017 12:23 by ADMIN
When the SelectedIndex property is read during animation the CLR wrapper will throw InvalidCastException because of invalid cast to int. The object returned from GetValue is DeferredReference object.
Unplanned
Last Updated: 03 Jan 2017 21:06 by ADMIN
Change the TabItems layout when the TabControl OverflowMode="Wrap" with TabStripPlacement="Bottom" :
1. Let's say the wrap results in 3 lines. What we would expect is line 1 and 2 to be filling the entire width and line 3 to be partially filled. What we experience is line 1 partially filled and lines 2 and 3 filling the entire width 
2. When clicking on an item the lines swap around. The partially filled line can end up on top, in the middle or on the bottom. Clicking on items that cause tab rows to move up should re-flow the wrap.
3. Ideally - to look good - the logic should stretch the 'complete' rows to the entire width - i.e. it should adjust tab sizes to fill the entire width available on 'full' rows.
Unplanned
Last Updated: 03 Jan 2017 20:29 by ADMIN
Using  ArcGIS API for Silverlight/WPF version 2.1 in the TabControl throws exception in design-time
Unplanned
Last Updated: 30 Oct 2018 09:40 by Viktoria
RadTabControl is currently designed to support scrolling of RadTabItems only when any of them is currently focused. An ability to scroll RadTabItems without explicitly focusing them should be provided.
Unplanned
Last Updated: 30 May 2019 08:27 by ADMIN

When the window of an application that has a TabControl with Left/Right TabStripPlacement is resized, the measure of the TabStrip is incorrect and the ScrollButtons are in Disabled state. All Tabs should be visible when the window is in its normal state and should be scrollable.
 
========================
Possible workaround:
Inherit RadTabControl and override

  protected override void OnScrollButtonsVisibilityChanged()
        {
            if (this.ScrollViewer != null)
            {
                RadDockPanel parentDock = this.ScrollViewer.Parent as RadDockPanel;
                if (parentDock != null)
                {
                    // Dispatcher is because Measure should be called outside other Measure phase.
                    this.Dispatcher.BeginInvoke(new Action(() =>
                    {
                        parentDock.InvalidateMeasure();
                    }));
                }
            }
        }
 
 
Duplicated
Last Updated: 07 May 2024 06:19 by ADMIN
TabControl: The tab items and their content are not disposed correctly due to the RadTabItemAutoamtionPeer.
Unplanned
Last Updated: 03 Dec 2019 14:08 by ADMIN
Introduce "Add new tab" button as in the RadTabbedWindow control which creates a new tab upon click.
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.
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.

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.