1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
Ext.require(['*']);
Ext.onReady(function() {
var cw;
Ext.create('Ext.Viewport', {
layout: {
type: 'border',
padding: 3
},
defaults: {
split: true
},
items: [Ext.create('Ext.Component', {
region: 'north',
height: 25, // give north and south regions a height
contentEl: 'MenuDeroulant'
}),{
region: 'west',
layout: 'border',
collapsible: true,
title: 'Utilisateur',
width: '12%',
border: false,
items: [{
region: 'center',
//html: 'Connexion...',
contentEl: 'BlocConnexion',
title: 'Connexion',
collapsible: true,
minHeight: 80
},{
region: 'south',
height: 250,
split: true,
collapsible: true,
title: 'Splitter above me',
minHeight: 60,
contentEl: 'BlocFavoris'
//html: 'center south'
}]
},{
region: 'center',
collapsible: false,
title: 'Tableau de bord...',
split: true,
minWidth: 100,
minHeight: 140,
contentEl: 'BlocCentre'
//html: 'Center<br>I am floatable'
},{
region: 'east',
collapsible: true,
floatable: true,
split: true,
width: 200,
minWidth: 120,
minHeight: 140,
title: 'East',
contentEl: 'BlocDroit'
},
Ext.create('Ext.Component', {
region: 'south',
height: 20, // give north and south regions a height
contentEl: 'BarreStatus'
})
]
});
}); |
Partager