Ext.js - Ext.container.Viewport 容器



Ext.container.Viewport - 視口是一種容器,它會自動調整大小以適合整個瀏覽器視窗。然後,你可以在其中新增其他 ExtJS UI 元件和容器。

語法

以下是建立 Ext.container.Viewport 容器的簡單語法。

Ext.create('Ext.container.Viewport', {
   items: [child1, child2]  
   // this way we can add different child elements to the container as container items.
});

示例

以下是一個簡單的示例,展示了 Ext.container.Viewport 容器。

<!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 () {
            var childPanel1 = Ext.create('Ext.panel.Panel', {
               title: 'Child Panel 1',
               html: 'A Panel'
            });
            var childPanel2 = Ext.create('Ext.panel.Panel', {
               title: 'Child Panel 2',
               html: 'Another Panel'
            });
            Ext.create('Ext.container.Viewport', {
               renderTo: Ext.getBody(),
               items: [ childPanel1, childPanel2 ]
            });
         });
      </script>
   </head>
   
   <body>
   </body>
</html>

上述程式將產生以下結果 -

extjs_containers.htm
廣告