Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在选项卡面板组件上实现全局 onclose 事件,因此每当关闭选项卡时,我都希望发生一些事情。
这可以实现吗?
使用 MVC 控制器很容易监听此类事件。这是进入 Ext.app.Controller 类实例的示例代码:
init:function () { this.control( 'tabpanel tab':{ close:this.onTabClose } ..... }
这是一个示例http://jsfiddle.net/dbrin/UqfFH/