监听ext4 TabPanel tab close 事件

var p = new Ext.Panel({
			title : 'Tab',
			closable : true,
			listeners : {
				beforeclose : function() {
					alert("beforeclose");
				}
			},
			html : "我是二毛"
		});
		
tab.add(p);

p.tab.on('beforeclose', function() {
			alert('beforeclose');
			return false;
		});


ext4 tabPanel 是挂在Ext.tab.Tab上的,所以监听p.tab即可

你可能感兴趣的:(java,html,ext)