ExtJS 4 Ext.panel.Panel

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ExtJS 4 Ext.panel.Panel相关的知识,希望对你有一定的参考价值。

Ext.panel.Panel.html

<div id="content"></div>

 

Ext.panel.Panel.js

/// <reference path="~/Scripts/ext-4.2.1.883/ext-all-dev.js" />
Ext.onReady(function () {
    Ext.create(‘Ext.panel.Panel‘,
    {
        title: ‘面板头部‘,
        tbar: [
        {
            text: ‘Button 1‘,
            handler: function () { alert(‘Button 1‘) }
        }],
        bbar: [‘底端工具栏‘],
        height: 200,
        width: 300,
        frame: true,
        renderTo: ‘content‘,
        bodyPadding: 5,
        bodyStyle: ‘background-color:#fff‘,
        html: ‘面板体‘,
        tools: [
            { id: ‘save‘},
            { id: ‘toggle‘ },
            { id: ‘close‘ },
            { id: ‘maximize‘ }
        ],
        buttons: [
        {
            text: ‘面板底部‘
        }]
    });
});

以上是关于ExtJS 4 Ext.panel.Panel的主要内容,如果未能解决你的问题,请参考以下文章

ExtJs 4.1 min 宽度和对齐“拉伸”不能一起工作

扩展 Ext.panel.Panel 的正确方法?

Extjs在panel的标题栏上加按钮的方法

Extjs6 怎么重写框架的类

ExtJS 根据商店项目动态创建元素

Extjs 4.1 - 如何在 initComponent 函数中创建项目