Unplanned
Last Updated: 04 Oct 2023 07:55 by Jiri

Steps to reproduce

- open QSF.sln

- open WorldClockView.xaml

- add x:Name="tabView" to RadTabView

- add IsVisible="False" to Auckland tab item !!!

- open WorldClockView.cs

- add this code to the end of page constructor:

 var tabItem = new TabViewItem()
 {
     Header = new TabViewHeaderItem { Text = "Prague" },
     Content = new StackLayout
     {
         Children =
         {
             new Label {Text = "Prague"}
         }
     },
 };
 var index = tabView.Items.Count - 2;
 tabView.Items.Insert(index, tabItem);
The content for Prague header is the content from different tab.

 

 

 

Unplanned
Last Updated: 24 Feb 2023 10:24 by Brandon

when TabView is inside Stack and item is added dynamically to the RadTabView, the content of this first item does not layout as expected. 

<StackLayout>
    <Button Text="Add" Clicked="OnAddClicked" />
    <Button Text="Remove" Clicked="OnRemoveClicked" Margin="0,5,0,5" />
    <Button Text="Clear" Clicked="OnClearClicked" />
        
        
    <telerikPrimitives:RadTabView BackgroundColor="Red" x:Name="tabView" AutomationId="tabView"/>
</StackLayout>

 

 

 

 

Unplanned
Last Updated: 11 Mar 2022 19:47 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 5
Category: TabView
Type: Feature Request
10
We should consider adding one or more events related to the selection of the TabView control. 
Completed
Last Updated: 15 Sep 2021 08:35 by ADMIN
Release R3 2021
ADMIN
Created by: Lance | Manager Technical Support
Comments: 0
Category: TabView
Type: Feature Request
7
Introducing a TabItem.IsTabVisible property would be useful. 

Currently, if you want to hide a tab, you need to remove it from the TabView.Items collection and cache it in a backing collection.

Then, to re-show the tab, remove it from the cache and add it back to the TabItems (preferably at the same index if you've also cached it's position).
Unplanned
Last Updated: 19 Jul 2021 12:53 by David

In a scenario where TabView items are added and removed dynamically and IsContentPreserved property is set to "True" - if a new item is added, then the user selects it and the same item is removed, an exception is raised on iOS.

Unplanned
Last Updated: 28 May 2021 13:51 by ADMIN

When we add some controls, for example, 3 controls in a row inside the first tab item, then 5-10 controls in a row in the second tab item of the tabview, we can only see the first 3 controls in the first tab. In other words, we can only see the controls in the row up to the height of the first tab's content.

 

The issue appears in SlideView control as well. The TabView control uses SlideView internally.

Completed
Last Updated: 13 Apr 2021 11:56 by ADMIN
Release 2021.1.413 (R1 2021 minor release)
Under "normal" conditions, the user interacts with each tab in turn, finally getting to the last tab and submitting valid data, but under some conditions the tab control appears to not function correctly - clicking on the headers quickly will change which tab's header is highlighted, but the display content does not change. 
Completed
Last Updated: 13 Apr 2021 11:56 by ADMIN
Release 2021.1.413 (R1 2021 minor release)
if you rapidly switch between random tabs immediately after the page is displayed and IsContentPreserved is True, the tabview content stops getting updated
Completed
Last Updated: 24 Feb 2021 13:39 by ADMIN
Release R1 2021 SP1
With R1 2021 release the  the content of the first tab of the TabView is not visible on UWP.
Completed
Last Updated: 21 Jan 2021 11:26 by ADMIN
Release R1 2021
ADMIN
Created by: Stefan Nenchev
Comments: 8
Category: TabView
Type: Feature Request
17
Add functionality to slide through the items like in a SlideView/Carousel.
Unplanned
Last Updated: 14 Jan 2021 12:51 by ADMIN
Created by: n/a
Comments: 0
Category: TabView
Type: Feature Request
0

when the flow direction is changed to RTL

Expected: View should show in the order (tab2,tab1)

Actual: View is showing in the order (tab1,tab2)

https://material.io/design/usability/bidirectionality.html#mirroring-layout 

Unplanned
Last Updated: 20 Nov 2020 07:19 by ADMIN
Created by: Mike
Comments: 1
Category: TabView
Type: Feature Request
0
access the tab headers via the keyboard tab button
Completed
Last Updated: 06 Nov 2020 15:56 by ADMIN
Release 2020.3.1106 (R3 2020 minor release)
ADMIN
Created by: Lance | Manager Technical Support
Comments: 7
Category: TabView
Type: Feature Request
12
Add support for tabs that cannot be selected
Declined
Last Updated: 17 Aug 2020 07:08 by ADMIN
Created by: Abhishek
Comments: 1
Category: TabView
Type: Feature Request
1

Hi Team,

As we need to show loading spinner on Tabview so require property IsBusy or Isloading on Tabview. We are doing dynamic Tab header binding as per api response. Tab should be locked till loading spinner is showing on UI.

Regards

Abhishek Kesarwani

Unplanned
Last Updated: 18 Oct 2019 11:40 by ADMIN
Created by: Prasanth
Comments: 0
Category: TabView
Type: Bug Report
0

When longer string is used for HeaderText the text could not be wrapped. Also the issue occurs when using Label with LineBreakMode="WordWrap" inside the TabViewHeaderItem.Content:

<telerikPrimitives:TabViewItem>
    <telerikPrimitives:TabViewItem.Header>
        <telerikPrimitives:TabViewHeaderItem>
            <telerikPrimitives:TabViewHeaderItem.Content>
                <Label Text="Lorem ipsum dolor sit amet, consectetur adttert etertert erterter ipiscing elit." LineBreakMode="WordWrap"/>
            </telerikPrimitives:TabViewHeaderItem.Content>
        </telerikPrimitives:TabViewHeaderItem>
    </telerikPrimitives:TabViewItem.Header>
    <telerikPrimitives:TabViewItem.Content>
        <Label Margin="10" Text="Label" />
    </telerikPrimitives:TabViewItem.Content>
</telerikPrimitives:TabViewItem>

 

Completed
Last Updated: 21 Jan 2019 06:06 by ADMIN
When you have declared a RadTabView with a single item and you try adding items at runtime - the new TabViewItems are added to the Items collection of the control but the UI is not updated.
Unplanned
Last Updated: 15 Oct 2018 13:16 by ADMIN
ADMIN
Created by: Yana
Comments: 0
Category: TabView
Type: Feature Request
2
Currently RadTabView provides SelectedItem property
Completed
Last Updated: 27 Jul 2018 11:14 by ADMIN
ADMIN
Created by: Lance | Manager Technical Support
Comments: 2
Category: TabView
Type: Bug Report
0
Allow different width tab headers. For example, 200, 100, 100.

Available in minor release 2018.2.727.250. It will also be available in the R3 2018 release.
Declined
Last Updated: 24 Jul 2018 15:08 by ADMIN
ADMIN
Created by: Lance | Manager Technical Support
Comments: 1
Category: TabView
Type: Feature Request
0
This feature request asks for the option to align the TabViewItemHeaders to one side of the HeaderPosition, using the minimal amount of horizontal space (rendered as if they're in a horizontal StackLayout)

As a good example, the UI for WPF TabControl does this, notice the tab headers are left-aligned: https://docs.telerik.com/devtools/wpf/controls/radtabcontrol/overview2 
Unplanned
Last Updated: 17 Jul 2018 12:28 by ADMIN
ADMIN
Created by: Lance | Manager Technical Support
Comments: 2
Category: TabView
Type: Feature Request
0
Support for interactive TabHeader content (i.e. Buttons, Checkboxes) that does not invoke the tab selection and is aligned next to the tabs
1 2