容器內(nèi)部容器:我們可以在其他容器內(nèi)部的容器作為父容器的組件以及其他組件。
這里是使用容器內(nèi)容器的簡(jiǎn)單語(yǔ)法:
var container = Ext.create('Ext.container.Container', {
items: [component3, component4]
});
Ext.create('Ext.container.Container', {
renderTo: Ext.getBody(),
items: [container]
});
您可以將容器作為其他容器中的項(xiàng)目
下面是一個(gè)簡(jiǎn)單的例子,顯示容器內(nèi)的容器:
<!DOCTYPE html>
<html>
<head>
<link href="./ext-6.0.0/build/classic/theme-classic/resources/theme-classic-all.css" rel="stylesheet">
<script src="./ext-6.0.0/build/ext-all.js"></script>
<script type="text/javascript">
Ext.onReady(function () {
var component1 = Ext.create('Ext.Component', {
html:'First Component'
});
var component2 = Ext.create('Ext.Component', {
html: 'Second Component'
});
var component3 = Ext.create('Ext.Component', {
html: 'Third Component'
});
var component4 = Ext.create('Ext.Component', {
html: 'Fourth Component'
});
var container = Ext.create('Ext.container.Container', {
style: {borderStyle: 'solid', borderWidth: '2px' },
width: '50%',
items: [component3, component4]
});
Ext.create('Ext.container.Container', {
renderTo: Ext.getBody(),
title: 'Container',
border: 1,
width: '50%',
style: {borderStyle: 'solid', borderWidth: '2px' },
items: [component1, component2, container]
});
});
</script>
</head>
<body>
</body>
</html>
這將產(chǎn)生以下結(jié)果:
更多建議: