Extjs-layout-fit

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

Ext.js-レイアウトを合わせる

このレイアウトでは、コンテナは単一のパネルで満たされ、レイアウトに関連する特定の要件がない場合、このレイアウトが使用されます。

構文

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

layout: 'fit'

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

<!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 :'fit'
               },
               width : 600,
               defaults: {
                  bodyPadding: 15
               },
               items : [{
                  title: 'Panel1',
                  html : 'This is panel 1'
               },{
                  title: 'Panel2',
                  html : 'This is panel 2'
               },{
                  title: 'Panel3',
                  html : 'This is panel 3'
               },{
                  title: 'Panel4',
                  html : 'This is panel 4'
               }]
            });
         });
      </script>
   </head>

   <body>
   </body>
</html>

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