Ext.tab.Panel : 標(biāo)簽面板就像一個(gè)普通的面板,但支持卡標(biāo)簽面板布局。
以下是創(chuàng)建Ext.tab.Panel容器的簡單語法。
Ext.create('Ext.tab.Panel', {
items: [child1, child2] // 這樣我們可以將不同的子元素作為容器項(xiàng)添加到容器中。
});
以下是一個(gè)顯示Ext.tab.Panel容器的簡單示例。
<!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 () {
Ext.create('Ext.tab.Panel', {
renderTo: Ext.getBody(),
height: 100,
width: 200,
items: [{
xtype: 'panel',
title: 'Tab One',
html: 'The first tab',
listeners: {
render: function() {
Ext.MessageBox.alert('Tab one', 'Tab One was clicked.');
}
}
},{
// xtype for all Component configurations in a Container
title: 'Tab Two',
html: 'The second tab',
listeners: {
render: function() {
Ext.MessageBox.alert('Tab two', 'Tab Two was clicked.');
}
}
}]
});
});
</script>
</head>
<body>
</body>
</html>
這將產(chǎn)生以下結(jié)果:
更多建議: