Unplanned
Last Updated: 18 Apr 2024 13:30 by Francisco M.
When you bind the IsVisible property the content in the Tab where the binding is set is not visible.
In Development
Last Updated: 15 Apr 2024 10:13 by ADMIN
Scheduled for 7.0.0 (2024 Q2)
Created by: PalmSens
Comments: 0
Category: TabView
Type: Feature Request
3
The TabView only supports unbound mode and there is no way to bind a collection of items from the view model to display as tabviewitems
Unplanned
Last Updated: 11 Aug 2023 12:26 by movilidad
Created by: movilidad
Comments: 0
Category: TabView
Type: Feature Request
1
Provide overflow menu for TabView header items. Similar behavior like the Telerik Xamarin TabView.
Unplanned
Last Updated: 20 Jul 2023 12:28 by Kevin
Created by: Kevin
Comments: 0
Category: TabView
Type: Bug Report
0

In certain situations, the TabView cuts off part of the header text for some of the headers. The problem is worse when the BorderThickness property of the TabViewHeaderItem is set to 1 or bigger. 

WinUI:

Android:

 

Unplanned
Last Updated: 22 Jun 2023 12:16 by Volker
Created by: Volker
Comments: 0
Category: TabView
Type: Bug Report
0

When wrapping the cell in a Grid with Margin, the margin does not respect. 

<telerik:RadListView.ItemTemplate>
    <DataTemplate>
        <telerik:ListViewTemplateCell>
            <telerik:ListViewTemplateCell.View>
                <Grid Margin="0,5,0,0" BackgroundColor="LightBlue">
                    <Grid.RowDefinitions>
                        <RowDefinition Height="Auto" />
                        <RowDefinition Height="Auto" />
                    </Grid.RowDefinitions>
                    <Label Text="{Binding Title}" FontSize="16"/>
                    <Label Text="{Binding Author}" FontSize="13" 
                        Grid.Row="1" FontAttributes="Italic" TextColor="Gray" />
                </Grid>
            </telerik:ListViewTemplateCell.View>
        </telerik:ListViewTemplateCell>
    </DataTemplate>
</telerik:RadListView.ItemTemplate>

 

 

Unplanned
Last Updated: 19 Jun 2023 12:35 by ADMIN
Flickering occurs When switching between the tabs with icon in the header
Unplanned
Last Updated: 30 May 2023 05:58 by Curtis
Provide options to rearrange, open, close tabs like in TabView for WinUI 3 https://learn.microsoft.com/en-us/windows/winui/api/microsoft.ui.xaml.controls.tabview?view=winui-2.8 

Similar to chrome browser tabs.

Unplanned
Last Updated: 22 May 2023 10:19 by Uvin
Created by: Uvin
Comments: 0
Category: TabView
Type: Feature Request
2
When setting FlowDirection property to the RadTabView the control behaves differently on different platforms. 
Provide right to left support. 
Completed
Last Updated: 15 Mar 2023 11:32 by ADMIN
Release 5.1.0

when the tab IsEnabled is set to False -> the style of the disabled tab changes, but the the disabled tab is still clickable.

when the tab IsVisible is set to False -> the tab is not visible, but its content is still visible.

Unplanned
Last Updated: 02 Feb 2023 09:11 by Erik Damgaard
Created by: Erik Damgaard
Comments: 0
Category: TabView
Type: Bug Report
1
When setting the IsHeaderScrollable to True, the headers are not scrollable.
Unplanned
Last Updated: 19 Dec 2022 13:24 by Günter

Provide an option for achieving the following using the TabView - add a button in the header's center and customize it: 

Completed
Last Updated: 18 Oct 2022 14:30 by ADMIN
Release 3.2.0
Created by: Changjie
Comments: 0
Category: TabView
Type: Bug Report
0
TabViewItems should be with equal width by default.
Completed
Last Updated: 18 Oct 2022 14:15 by ADMIN
Release 3.1.0

This bug prevents the binding of the TabViewItem's properties to the underlying view-model. For example, the following code won't work:

<telerik:RadTabView x:Name="tabView">
    <telerik:TabViewItem HeaderText="{Binding SomeHeaderText}"
                                      ImageSource="{Binding SomeImageSource}">
    </telerik:TabViewItem>
</telerik:RadTabView>

As a temporary workaround, the BindingContext can be propagated manually instead:

<telerik:RadTabView x:Name="tabView">
    <telerik:TabViewItem BindingContext="{Binding BindingContext, Source={x:Reference tabView}}"
                                      HeaderText="{Binding SomeHeaderText}"
                                      ImageSource="{Binding SomeImageSource}">
    </telerik:TabViewItem>
</telerik:RadTabView>

Completed
Last Updated: 20 Jul 2022 08:18 by ADMIN
Release Release 2.2.0

  When setting the second TabItem IsSelected property of Tabview, it does not take effect, and the first TabItem is still selected,and the second one alsodisplays the selection style.

  Code


    <telerik:RadTabView x:Name="tabView" AutomationId="tabView">
        <telerik:TabViewItem HeaderText="Home">
            <Label Margin="10" Text="This is the content of the Home tab" />
        </telerik:TabViewItem>
        <telerik:TabViewItem HeaderText="Folder" IsSelected="True">
            <Label Margin="10" Text="This is the content of the Folder tab" />
        </telerik:TabViewItem>
        <telerik:TabViewItem HeaderText="View">
            <Label Margin="10" Text="This is the content of the View tab" />
        </telerik:TabViewItem>
    </telerik:RadTabView>

Please Refer to the attachment for the results.

 

 

 

 

 

Completed
Last Updated: 22 Jun 2022 10:48 by ADMIN
Release 2.0.0
When removing for example the first element which is not currently the selected tab, the content from the selected tab disappears. 
Completed
Last Updated: 22 Jun 2022 10:48 by ADMIN
Release 2.0.0
Scenario: 
empty TabView, start adding items to the control, tab headers are not visible. 

You need to resize the window to show the headers.
Declined
Last Updated: 25 May 2022 14:54 by ADMIN
Created by: Brandon
Comments: 1
Category: TabView
Type: Feature Request
1

Hi Team,

Currently (as of 0.7.0) the RadTabview automatically collapses the tab header items panel when there are no tab headers to show.

I am requesting that you add a feature to the RadTabView that will allow me to keep the header items panel visible, even if there are no tab headers visible.

Thank you,

Brandon

> The reason I ask for this, is because sometimes I need to set some tabs to IsVisible=False, but I still want to see the header panel.