ExtJS4.1 ExtJS TabPanel 双击标签关闭该页
关闭的时候不太顺手 感觉不方便 所以想双击关闭tab方便些
于是在网上找到下面的代码
URL:http://atian25.iteye.com/blog/413920
可是用在我的系统框架上无效,本人用的是ExtJs4.1。
不知道是不是我的问题,可是实在找不出错在哪里。
于是 自己想了个办法 亲测支持ExtJs4.1
可能有点麻烦 可是没办法 上面那个方法 我实在是找不出问题在哪里
*///////////////////---下面是网上找的方法 本人无效------////////////////////
- var tabs = new Ext.TabPanel({
- renderTo: ‘tabs1‘,
- width:450,
- activeTab: 0,
- frame:true,
- defaults:{autoHeight: true},
- items:[
- {contentEl:‘script‘, title: ‘Short Text‘},
- {contentEl:‘markup‘, title: ‘Long Text‘}
- ],
- initEvents : function(){
- Ext.TabPanel.superclass.initEvents.call(this);
- this.on(‘add‘, this.onAdd, this, {target: this});
- this.on(‘remove‘, this.onRemove, this, {target: this});
- this.mon(this.strip, ‘mousedown‘, this.onStripMouseDown, this);
- this.mon(this.strip, ‘contextmenu‘, this.onStripContextMenu, this);
- if(this.enableTabScroll){
- this.mon(this.strip, ‘mousewheel‘, this.onWheel, this);
- }
- //ADD:monitor title dbclick
- this.mon(this.strip,‘dblclick‘,this.onTitleDbClick,this);
- },
- //ADD: handler
- onTitleDbClick:function(e,target,o){
- var t = this.findTargets(e);
- if (t.item.fireEvent(‘beforeclose‘, t.item) !== false) {
- t.item.fireEvent(‘close‘, t.item);
- this.remove(t.item);
- }
- }
- });
-----下面是我的方法--------
有用到 Viewport 只贴出了 tabpanel的代码- {
- xtype: "tabpanel",
- region: "center",
- id: "tabpanel",
- minTabWidth: 100,
- listeners: {
- ‘tabchange‘: function () {
- }
- }
- }
- var CreateTab=function(id,title,url){
- var tabs = Ext.getCmp("tabpanel");
- for (var i = 0; i < tabs.items.length; i++) {
- if (tabs.items.items[i].title == title) {
- tabs.items.items[i].show();
- return;
- }
- }
- var NewTabPanel= Ext.create(‘Ext.panel.Panel‘, {
- layout: ‘fit‘,
- title: title,
- collapsible: true,
- closable: id==0?false:true,
- autoScroll: false,
- initEvents: function () {
- var obj = this;
- var id = ‘tab-‘ + (this.id.split(‘-‘)[1] - 1 + 2) + ‘-btnWrap‘;
- Ext.get(id).dom.ondblclick = function () {
- if(obj.title!=‘我的工作台‘)
- tabs.remove(obj);
- }
- },
- html: ‘<iframe name="mainframe" width="100%" height="100%" frameborder="0" src="‘+url+‘"></iframe>‘
- });
- tabs.add(NewTabPanel).show();
- }
- //用下面的代码可以测试添加Tab
- CreateTab("0", "我的工作台", "MyHome.htm");
- CreateTab("1", "账户管理", "User.htm");
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。