Extjs-layout-table

提供:Dev Guides
移動先:案内検索

Ext.js-テーブルレイアウト

名前が示すように、このレイアウトはコンポーネントをHTMLテーブル形式でコンテナに配置します。

構文

以下は、テーブルレイアウトを使用する簡単な構文です。

layout: 'table'

以下は、テーブルレイアウトの使用法を示す簡単な例です。

<!DOCTYPE html>
<html>
   <head>
      <link href = "https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/classic/theme-classic/resources/theme-classic-all.css"
         rel = "stylesheet"/>
      <script type = "text/javascript"
         src = "https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/ext-all.js"></script>

      <script type = "text/javascript">
         Ext.onReady(function() {
            Ext.create('Ext.container.Container', {
               renderTo : Ext.getBody(),
               layout : {
                  type :'table',
                  columns : 3,
                  tableAttrs: {
                     style: {
                        width: '100%'
                     }
                  }
               },
               width:600,
               height:200,

               items : [{
                  title : 'Panel1',
                  html : 'This panel has colspan = 2',
                  colspan :2
               },{
                  title : 'Panel2',
                  html : 'This panel has rowspan = 2',
                  rowspan: 2
               },{
                  title : 'Panel3',
                  html : 'This  s panel 3'
               },{
                  title : 'Panel4',
                  html : 'This is panel 4'
               },{
                  title : 'Panel5',
                  html : 'This is panel 5'
               }]
            });
         });
      </script>
   </head>

   <body>
   </body>
</html>

上記のプログラムは、次の結果を生成します-