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
|
<!
DOCTYPE
html>
<
html
>
<
head
>
<
title
>ExtJs</
title
>
<
meta
http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<
link
rel="stylesheet" type="text/css" href="ExtJs/packages/ext-theme-crisp/build/resources/ext-theme-crisp-all.css">
<
script
type="text/javascript" src="ExtJs/ext-all.js"></
script
>
<
script
type="text/javascript" src="ExtJs/bootstrap.js"></
script
>
<
script
type="text/javascript" src="ExtJs/packages/ext-theme-crisp/build/ext-theme-crisp.js"></
script
>
<
script
type="text/javascript">
Ext.onReady(function() {
Ext.create('Ext.panel.Panel',{
title: 'Ext.layout.container.Table',
frame: true,
height: 600,
width: 800,
renderTo: Ext.getBody(),
layout: {
type: 'hbox',
align: 'stetch'
},
items: [{
title: '子面板一',
flex: 1,
html: '1/4宽(flex=1)'
},{
title: '子面板二',
flex: 1,
html: '1/4宽(flex=1)'
},{
title: '子面板三',
flex: 2,
html: '2/4宽(flex=2)'
}]
});
});
</
script
>
</
head
>
<
body
>
<
div
id='form'></
div
>
<
div
id='form1'></
div
>
</
body
>
</
html
>
|