[FIXED] [#614] [2.5.4] [3.1.0] TabStrip issues

  1. #1

    [FIXED] [#614] [2.5.4] [3.1.0] TabStrip issues

    Hello,

    1) UIName on the ext:TabStrip doesn't apply to ext:Tab.
    2) js setTabHidden method works incorrectly because of "tab.hidden = hidden;" line. This line breaks tab.hide() and tab.show() methods.

    Original method
        setTabHidden : function (tab, hidden) {
            tab = this.getComponent(tab);
            tab.hidden = hidden;
            hidden ? tab.hide() : tab.show();
        }
    Last edited by Daniil; Dec 21, 2014 at 8:57 AM. Reason: [FIXED] [#614] [2.5.4] [3.1.0]
  2. #2
    Hi Yury,

    Thank you for the report.

    1) UIName on the ext:TabStrip doesn't apply to ext:Tab.
    You can apply a custom UI via a Tab's CustomConfig.
    <ext:Tab ...>
        <CustomConfig>
            <ext:ConfigItem Name="ui" Value="someUI" Mode="Value" />
        </CustomConfig>
    </ext:Tab>
    2) js setTabHidden method works incorrectly because of "tab.hidden = hidden;" line. This line breaks tab.hide() and tab.show() methods.
    Created an Issue:
    https://github.com/extnet/Ext.NET/issues/614

    Fixed:
    v2: revision 6226 (branches/2). it will go the v2.5.4 release.
    v3: revision 6227 (trunk). it will go the v3.1.0 release.
  3. #3
    Hi Daniil,

    Thanks for fixes.

    About ui. Now I use something like that. But I think, TabStrip and Tab are parts of a whole (like tabs in TabPanel).
  4. #4
    About ui. Now I use something like that. But I think, TabStrip and Tab are parts of a whole (like tabs in TabPanel).
    Agreed. Corrected in Ext.NET 3.1.0 beta (not released yet, but upcoming). A TabStrip's UI affects on all its Tabs unless they have its own UI or UIName settings (added these properties as well).

    Thanks for pointing out the problem.

Similar Threads

  1. Tabstrip and asp.net multiview
    By jmilton in forum 2.x Help
    Replies: 0
    Last Post: May 13, 2014, 8:13 PM
  2. [CLOSED] TabStrip tab not loading
    By ndotis in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: May 09, 2014, 6:24 PM
  3. [CLOSED] TabStrip Items CSS
    By ndotis in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jun 11, 2013, 4:23 PM
  4. I can not find the tabstrip why?
    By Fabrizio in forum 1.x Help
    Replies: 3
    Last Post: Jun 15, 2010, 2:49 PM

Posting Permissions