Ext.js:Ext.container.Viewport 容器

返回到:Ext.js 教程:集装箱

Ext.container.Viewport:Viewport是一个容器,它会自动调整大小到整个浏览器窗口的大小。 然后,您可以在其中添加其他ExtJS UI组件和容器。

语法

这里是创建Ext.container.Viewport容器的简单语法。

Ext.create('Ext.container.Viewport', {
   items: [child1, child2] // 这样我们可以将不同的子元素作为容器项添加到容器中。
});

例子

下面是一个简单的例子显示Ext.container.Viewport容器。

<!DOCTYPE html>
<html>
<head>
    <link href="./ext-6.0.0/build/classic/theme-classic/resources/theme-classic-all.css" rel="stylesheet">
    <script src="./ext-6.0.0/build/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>

这将产生以下结果 :

Ext.js:Ext.container.Viewport 容器

返回到:Ext.js 教程:集装箱

作者:terry,如若转载,请注明出处:https://www.web176.com/extjs_api/11605.html

(0)
打赏 支付宝 支付宝 微信 微信
terryterry
上一篇 2023年3月2日
下一篇 2023年3月3日

相关推荐

发表回复

登录后才能评论