Ext.js - 適應佈局



在這種佈局中,容器由單個面板填充,而且在與佈局無關的特定要求時使用此佈局。

語法

以下是使用適應佈局的簡單語法。

layout: '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>

上述程式將生成以下結果:

extjs_layouts.htm
廣告
© . All rights reserved.