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: 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.

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>