Completed
Last Updated: 06 Nov 2020 15:56 by ADMIN
Release 2020.3.1106 (R3 2020 minor release)
ADMIN
Lance | Manager Technical Support
Created on: 05 Jul 2018 14:35
Category: TabView
Type: Feature Request
12
TabView: Add Support for Disabled Tabs
Add support for tabs that cannot be selected
7 comments
ADMIN
Georgi
Posted on: 06 Nov 2020 15:56

Hi all,

You can now make tabs disabled via the IsEnabled property as shown in the following help article: https://docs.telerik.com/devtools/xamarin/controls/tabview/tabview-item#disabled-tabs.

Regards,
Georgi
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

ADMIN
Didi
Posted on: 12 Mar 2019 14:05
Hello Simranjeet,

I understand this feature is important for the scenario you want to achieve.

At this point I could not commit to a specific time-frame when this feature will be implemented. 
As a solution on this the TabViewHeaderItem provides IsEnabled property which prevents the TabView Item to be clicked. For example:

<telerikPrimitives:RadTabView x:Name="tabView">
    <telerikPrimitives:RadTabView.Items>
        <telerikPrimitives:TabViewItem >
            <telerikPrimitives:TabViewItem.Header>
                <telerikPrimitives:TabViewHeaderItem IsEnabled="False">
                    <Label Text="Home" TextColor="LightGray" />
                </telerikPrimitives:TabViewHeaderItem>
            </telerikPrimitives:TabViewItem.Header>
            <telerikPrimitives:TabViewItem.Content>
                <Label Margin="10" Text="This is the content of the Home tab" />
            </telerikPrimitives:TabViewItem.Content>
        </telerikPrimitives:TabViewItem>
        <telerikPrimitives:TabViewItem HeaderText="Folder" IsSelected="True">
            <telerikPrimitives:TabViewItem.Content>
                <Label Margin="10" Text="This is the content of the Folder tab" />
            </telerikPrimitives:TabViewItem.Content>
        </telerikPrimitives:TabViewItem>
        <telerikPrimitives:TabViewItem HeaderText="View">
            <telerikPrimitives:TabViewItem.Content>
                <Label Margin="10" Text="This is the content of the View tab" />
            </telerikPrimitives:TabViewItem.Content>
        </telerikPrimitives:TabViewItem>
    </telerikPrimitives:RadTabView.Items>
</telerikPrimitives:RadTabView>

I hope this will work in your case.

Regards,
Didi
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Simranjeet
Posted on: 08 Mar 2019 07:49
Hi Didi,

Thank you for considering the feature.

Could you please let me know the tentative duration of releasing this feature.

As the telerik controls has been used throughout the application and i dont want to revert back my code just for this one feature.

Thanks,
Simranjeet
ADMIN
Didi
Posted on: 11 Feb 2019 10:56
Hi Simranjeet,

Thank you for the provided information. We will have this feature in mind when planing the next features of the control.

Regards,
Didi
Progress Telerik
Simranjeet
Posted on: 11 Feb 2019 08:34

Hi,

The application on which i am currently working, do have many pages consist of tab-view control and only the selected tab should remain enabled is the requirement, rest all should get disabled. It would be great if tab disable property gets introduced for tabview control

 

Regards,
Simmy

ADMIN
Yana
Posted on: 16 Jul 2018 06:34
Hi,

Thank you for sending this feature request. We will keep an eye on it and will schedule it according to the demand.

Regards,
Yana
Jamie
Posted on: 05 Jul 2018 23:11
This would be a great addition to the TabView control as I require this functionality.