如何处理 Coolite 选项卡面板中的选项卡更改事件?

发布于 2024-09-19 11:01:44 字数 46 浏览 5 评论 0原文

我正在使用 Coolite tabpanel。我想从客户端处理选项卡更改事件。

I am working with a coolite tabpanel. I want to handle the tab change event from client side.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

随风而去 2024-09-26 11:01:44
listeners: {
        'tabchange': function(tabPanel, tab){
            // Ignore tab1 since it is a separate tab panel and we're managing history for it also.
            // We'll use its handler instead in that case so we don't get duplicate nav events for sub tabs.
            if(tab.id != 'tab1'){
                Ext.History.add(tabPanel.id + tokenDelimiter + tab.id);
            }
        }
    }
listeners: {
        'tabchange': function(tabPanel, tab){
            // Ignore tab1 since it is a separate tab panel and we're managing history for it also.
            // We'll use its handler instead in that case so we don't get duplicate nav events for sub tabs.
            if(tab.id != 'tab1'){
                Ext.History.add(tabPanel.id + tokenDelimiter + tab.id);
            }
        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文