[CLOSED] TabPanel hideTabStripItem/unhideTabStripItem

Page 2 of 2 FirstFirst 12
  1. #11
    Here is what we actually added. You can try it.
    http://forums.ext.net/showthread.php...ll=1#post95286
  2. #12
    Quote Originally Posted by Daniil View Post
    Hi @yash.kapoor,

    You can use this code.
    this.Tab1.Call("tab.hide");
    Do not you need to hide a tab itself (i.e. its content)?
    Hi @Daniil,
    Can you update this to BreakingChanges.

    Thanks
  3. #13
    Thank you. Added a new item to BREAKING_CHANGES.txt.

    149. The TabPanel's HideTabStripItem and UnhideTabStripItem server methods and the hideTabStripItem and unhideTabStripItem JavaScript methods have been removed.

    Now each item in a TabPanel has an instance of Ext.tab.Tab which you can show/hide.

    JavaScript
    App.TabPanel1.items.get(0).tab.hide();
    App.TabPanel1.items.get(0).tab.show();

    App.TabPanelItem.tab.hide();
    App.TabPanelItem.tab.show();


    C#
    TabPanel1.Call("items.get(0).tab.hide");
    TabPanel1.Call("items.get(0).tab.show");

    TabPanelItem.Call("tab.hide");
    TabPanelItem.Call("tab.show");
Page 2 of 2 FirstFirst 12

Similar Threads

  1. [CLOSED] Ext.Net's tabpanel and ExtJs tabpanel anchor
    By SouthDeveloper in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Nov 21, 2011, 11:57 AM
  2. Replies: 3
    Last Post: Aug 21, 2009, 2:24 PM
  3. Get TabPanel ActiveTab inside Other TabPanel.
    By grmontero in forum 1.x Help
    Replies: 1
    Last Post: Jul 16, 2009, 11:45 AM
  4. TabPanel.UnhideTabStripItem(tab) bug
    By Yauhen Papou in forum Bugs
    Replies: 0
    Last Post: Mar 08, 2009, 5:38 PM
  5. [CLOSED] Tabpanel in tabpanel from code behind
    By Jurke in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Oct 29, 2008, 7:56 AM

Tags for this Thread

Posting Permissions