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的主要内容,如果未能解决你的问题,请参考以下文章