Extjs-container-viewport

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

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>

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