Duplicated
Last Updated: 31 Mar 2025 05:47 by ADMIN
Created by: Dominik
Comments: 1
Category: TabView
Type: Feature Request
7

The TabView behaves erratically in RTL languages (e.g. Arabic). The tabs are correctly outlined from right-to-left but clicking on them leads to unexpected behaviour, as can be seen in the attached video. Clicking on a tab moves the selection to a completely different tab. Furthermore, the tab content is not displayed if any tab except the first one is selected.

Our product reaches an international market and is translated to more than 20 languages. Right-to-left language support is an integral part of our application. A similar bug has been reported almost two years ago (TabView: Right to Left support). Please fix this.

A VisualStudio solution has been attached to this bug report. It uses the sample code from your documentation (Telerik TabView for.NET MAUI—Tabbed UI with Native Look) to display three tabs.

Deploy the sample application to Android or iOS platforms to reproduce the issue.

In Development
Last Updated: 19 Mar 2025 16:49 by ADMIN

When having a RadCollectionView in the first tab for example, and switching tabs, the content inside the tabs does not update when scrolling the collectionview. When removing the RadCollectionView, the content updates.

This happens when using Telerik Maui 10.0.0 version and Maui 9.0.40

In Development
Last Updated: 28 Mar 2025 15:55 by ADMIN
The UI freezes when RadTabView is used as a parent container for RadCollectionView and the CollectionView is scrolled.
Unplanned
Last Updated: 23 Oct 2024 11:24 by Francisco M.
Add the ability to specify a template when the ItemsSource is null or the TabView contains no tab items.

Unplanned
Last Updated: 23 Oct 2024 09:11 by Alex
When the TabView is bound to an ItemsSource, and the DataTemplate contains heavy UI, it would be useful to load each tab content when the user selects the tab, not on page load.
Unplanned
Last Updated: 10 Oct 2024 08:34 by ADMIN
Created by: Kevin
Comments: 1
Category: TabView
Type: Feature Request
0
When using a screen reader on both Android and iOS devices, the reader will not navigate to tabs not currently visible on the screen.  It will navigate through each visible tab, then move to the content of the RadTabView.  It should instead navigate through each available tab first.
Unplanned
Last Updated: 04 Jun 2024 14:13 by Taylor
Created by: Taylor
Comments: 0
Category: TabView
Type: Feature Request
0
Enable keyboard navigation for the control.
Completed
Last Updated: 07 Aug 2024 08:00 by ADMIN
Release 7.1.0 (2024 Q3)
When you bind the IsVisible property the content in the Tab where the binding is set is not visible.
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: 14 Nov 2024 05:31 by James
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
13
When setting FlowDirection property to the RadTabView the control behaves differently on different platforms. 
Provide right to left support. 
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.
Completed
Last Updated: 15 May 2024 06:59 by ADMIN
Release 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: 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: 02 Jan 2025 09:20 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.

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>

1 2