var nom = "contact"; var titre = "Nous contacter"; var titre_icone = "Contact"; var icone = "phone_ring1"; //####################################################################################### //### Panel principal Contact //####################################################################################### monTab_contact = Ext.extend(Ext.TabPanel, { title: titre_icone, iconCls: icone, cls: nom, scroll: 'vertical', id: 'panelContact', listeners: { activate: function(tab) { Ext.Ajax.request({ url: 'recup-tab.php?tab='+this.cls, success: function (response, opts) { tab.update(response.responseText, true); if (document.getElementById('id_fiche')) { Ext.getCmp('id_fiche').destroy(); } }, }); } }, dockedItems: [ { xtype: "toolbar", title: titre, style: { height: '30px', fontSize: '12px', }, } ] }); Ext.reg(nom, monTab_contact);