Ext.js - 手風琴佈局



此佈局允許將所有項以堆疊方式(一個在另一個之上)放置在容器內。

語法

以下是使用手風琴佈局的簡單語法。

layout: 'accordion'

例項

以下是顯示手風琴佈局用法的簡單示例。

<!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 : 'accordion' ,
               width : 600,
               
               items : [{
                  title : 'Panel 1',
                  html : 'Panel 1 html content'
               },{
                  title : 'Panel 2',
                  html : 'Panel 2 html content'
               },{
                  title : 'Panel 3',
                  html : 'Panel 3 html content'
               },{
                  title : 'Panel 4',
                  html : 'Panel 4 html content'
               },{
                  title : 'Panel 5',
                  html : 'Panel 5 html content'
               }]
            });
         });
      </script>
   </head>
   
   <body>
   </body>
</html>

以上程式將產生以下結果 −

extjs_layouts.htm
廣告
© . All rights reserved.