Ext.js card_panel布局

2022-05-19 15:31 更新

描述

card TabPanel:此布局允許使用容器中的XY坐標(biāo)定位項(xiàng)目。

句法

這里是使用卡片標(biāo)簽面板布局的簡單語法

 layout: 'layout-cardtabs' 

下面是一個(gè)簡單的例子,顯示卡片標(biāo)簽面板布局的用法。

<!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(),
            requires: ['Ext.layout.container.Card'],
            xtype: 'layout-cardtabs',
            width: 600,
            height: 200,
            items:[{
               title: 'Tab 1',
               html:   'This is first tab.'
            },{
               title: 'Tab 2',
               html: 'This is second tab.'
            },{
               title: 'Tab 3',
               html: 'This is third tab.'
            }]
         });
      });
   </script>
</head>
<body>
</body>
</html>

這將產(chǎn)生以下結(jié)果 

Ext.js card_panel布局


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

掃描二維碼

下載編程獅App

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

編程獅公眾號(hào)