Ext.js Ext.tab.Panel容器

2022-05-19 11:42 更新

描述

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é)果:

TIM圖片20180205142327




以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)