Declined
Last Updated: 15 Oct 2018 13:29 by ADMIN
Mano Sadeh
Created on: 08 Oct 2018 19:49
Category: UI for Xamarin
Type: Feature Request
1
TabView with hide header option
Add the ability to create a TablView without any header. This could be usful in case you want to host a few ContentView in each tab and change grammatically the select tab.

Also, a SelectedItemIndex property will be useful as well.

Thanks,
Mano
1 comment
ADMIN
Yana
Posted on: 15 Oct 2018 13:28
Hi Mano,

First, regarding SelectedItemIndex property suggestion - I have logged it separately, you could cast your vote and subscribe for status changes at the link below:
https://feedback.telerik.com/Project/168/Feedback/Details/257984-tabview-expose-selectedindex-property

As to the TabView without header -  as far as I understand it, you'd like to hide the tabs' headers and only preserve tab items' content. The main part of the TabView is the TabHeaderItems and excluding them will actually cut the basic functionality of the control. In additional, it could be currently achieved to some extent by applying empty ControlTemplate to the TabViewHeaderItem like this:

<telerikPrimitives:TabViewItem>
    <telerikPrimitives:TabViewItem.Header>
        <telerikPrimitives:TabViewHeaderItem ControlTemplate="{StaticResource EmptyTemplate}" />
    </telerikPrimitives:TabViewItem.Header>
</telerikPrimitives:TabViewItem>

and the EmptyTemplate:

<ControlTemplate x:Key="EmptyTemplate">
    <Grid HeightRequest="0" />
</ControlTemplate>

So, I've updated the status to this request to "Declined".

Let me know if you have any comments on this.

Regards,
Yana