[CLOSED] Group Tab Panel or vertical tab panel with horizontal text

  1. #1

    [CLOSED] Group Tab Panel or vertical tab panel with horizontal text

    Hello

    I'm little confused what happened with GroupTabPanel component

    in fact I do not probabble even need the "grouping" feature of that panel, all I want is vertical tabs that displays text horizontally

    something similar to the

    https://examples1.ext.net/#/TabPanel...anel/Overview/

    (and I like that selected tab is white while the other blue)

    What is recomended strategy to achieve that?

    Thanks

    Zdenek
  2. #2
    Hello @Zdenek!

    Yes, the GroupedTabs component is broken since Ext.NET 3 and the example was suppressed from Examples Explorer. We have issue #548 logged to track this issue. Please follow the issue and or this forum thread: GroupTabPanel Example for updates on the issue.

    Well, but the good news is you can pretty much make it work if you use this approach in tab panels:

    <ext:TabPanel runat="server" Width="300" Height="300" TabPosition="Left">
        <TabBarConfig runat="server" TabRotation="0" />
        <Items>
            <ext:Panel runat="server" Title="Hello" Html="World"></ext:Panel>
            <ext:Panel runat="server" Title="Hello1" Html="World3"></ext:Panel>
            <ext:Panel runat="server" Title="Hello2" Html="World2"></ext:Panel>
            <ext:Panel runat="server" Title="Hello3" Html="World1"></ext:Panel>
        </Items>
    </ext:TabPanel>
    I hope this helps!
    Fabrício Murta
    Developer & Support Expert
  3. #3
    Ok thanks

    Is it possible to make selection tab "white" - as it is on example I send?
  4. #4
    Hello!

    Yes it is, just by changing the CSS properties of the element of the selected tab. To me, using the Triton theme, the selected tab is already white. You probably want to override the CSS definition for the .x-tab-default.x-tab-active.x-tab class/selector.
    Fabrício Murta
    Developer & Support Expert

Similar Threads

  1. Replies: 0
    Last Post: Mar 17, 2016, 3:58 AM
  2. Replies: 8
    Last Post: Nov 14, 2013, 10:57 PM
  3. [CLOSED] Having trouble removing group tab panel links in group
    By jlosi in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Jun 04, 2013, 3:30 PM
  4. Replies: 2
    Last Post: Mar 29, 2012, 9:00 PM
  5. [CLOSED] Vertical Button With Text, Or Vertical Tabs
    By rnachman in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Apr 21, 2011, 9:43 PM

Posting Permissions