Unplanned
Last Updated: 03 Jan 2017 21:04 by ADMIN
Click event of a Button in the HeaderTemplate is not fired properly when another button outside the tab has IsDefault property set to true
Unplanned
Last Updated: 03 Jan 2017 20:31 by ADMIN
When navigating with tab key (without setting tabindex) first highlights the RadTabItem then its content. Setting a tabindex on a control in the tabItem`s content works the opposite way
Unplanned
Last Updated: 03 Jan 2017 20:58 by ADMIN
When the RadTabControl AllowDragReorder property is set to True and the control contains multiple rows with tabs, the dragging operation cannot be properly executed and completed.
Unplanned
Last Updated: 03 Jan 2017 21:05 by ADMIN
In the VS2010 designer the selected tab is the last one even if the SelectedIndex proeprty of the TabControl is set to 0. The issue can be reprodiced in a scenario where the RadTabControl is defined in a RadWindow control.
Unplanned
Last Updated: 03 Dec 2012 11:28 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: TabControl
Type: Bug Report
5
Pressing "Tab" key does not change the focus when there are several controls in a TabItem.
Unplanned
Last Updated: 03 Jan 2017 21:04 by ADMIN
SelectedItem does not respect the Reset collection changed action.
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:29 by ADMIN
Using  ArcGIS API for Silverlight/WPF version 2.1 in the TabControl throws exception in design-time
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.
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 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: 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();
                    }));
                }
            }
        }
 
 
Unplanned
Last Updated: 09 Apr 2024 08:43 by ADMIN
TabControl: The tab items and their content are not disposed correctly due to the RadTabItemAutoamtionPeer.
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: 17 Mar 2017 14:36 by ADMIN
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.
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)
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 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
1 2