Ext.js:Ext.panel.Panel 容器

目录

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

Ext.panel.Panel:这是允许在正常面板中添加项目的基本容器。

语法

这里是创建Ext.panel.Panel容器的简单语法:

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

下面是一个简单的例子显示Ext.panel.Panel Container

<!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', {
             html: 'First Panel'
         });

         var childPanel2 = Ext.create('Ext.Panel', {
             html: 'Another Panel'
         });

         Ext.create('Ext.panel.Panel', {
         renderTo: Ext.getBody(),
            width: 100,
            height : 100,
            border : true,
            frame : true,
            items: [ childPanel1, childPanel2 ]
         });
      });
   </script>
</head>
<body>
</body>
</html>

这将产生以下结果:

Ext.js:Ext.panel.Panel 容器

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

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

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

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注