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);
            }));
        }
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.
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.