这是我在 Ext JS 中的第一个大项目,所以请理解 :) 我正在构建一个基于门户示例的应用程序。我需要创建的是简单的布局,顶部有工具栏,底部有状态栏,标签面板占据整个屏幕。像这样:
基本思想是将每个大控件放在单独的文件中,以便更改应用程序的某些部分。
我的目录结构如下所示:
root
--layout.html
--js
----App.js
----Components
------StatusBar.js
------UserInfo.js
------MenuBar
--------UserMenuBar.js
------Dashboard
--------UserDashboard.js
我的 App.js 看起来像这样:
Ext.ns('Holidays');
Ext.Loader.setConfig({
enabled: true,
disableCaching: true
});
Ext.Loader.setPath('Holidays', 'js');
Ext.Loader.setPath('Holidays.Components', 'js/Components');
Ext.Loader.setPath('Ext.ux', 'js/ux');
Holidays.application = null;
Ext.application({
name: "Holidays",
launch: function () {
Holidays.application = this;
this.createLayout();
Holidays.application = this;
Ext.fly(document.body).on('contextmenu', this.onContextMenu, this);
},
onContextMenu: function (e, target) {
if (!e.ctrlKey) {
e.preventDefault();
}
},
createLayout: function () {
this.menuBar = Ext.create("Holidays.Components.MenuBar.UserMenuBar");
this.statusBar = Ext.create("Holidays.Components.StatusBar");
this.centerView = Ext.create("Holidays.Components.Dashboard.UserDashboard");
this.centerPanel = Ext.create("Ext.tab.Panel", {
xtype: 'tabpanel',
border: false,
region: 'center',
bodyStyle: 'background:#DBDBDB',
plugins: Ext.create('Ext.ux.TabCloseMenu')
});
Ext.create('Ext.container.Viewport', {
layout: 'fit',
items: [{
xtype: 'panel',
border: false,
layout: 'border',
items: [
this.centerPanel],
bbar: this.statusBar,
tbar: this.menuBar
}]
});
this.addItem(this.centerView);
},
addItem: function (item) {
this.centerPanel.add(item);
item.show();
},
getStatusbar: function () {
return this.statusBar;
},
getCenterView: function () {
return this.centerView;
}
});
Holidays.getApplication = function () {
return Holidays.application;
};
Dashboard.js 看起来像这样:
Ext.define('Holidays.Components.Dashboard.UserDashboard', {
extend: 'Ext.panel.Panel',
alias: 'widget.UserDashboard',
layout: 'border',
padding: 5,
closable: false,
title: 'Holiday planner',
initComponent: function () {
this.tree = Ext.create("Ext.panel.Panel", {
region: 'west',
split: true,
title: 'Categories',
width: 300,
collapsible: true,
animCollapse: false
});
//this.tree = Ext.create("Holidays.Components.UserInfo");THIS WON'T WORK :(
this.grid = Ext.create("Ext.panel.Panel", {
title: 'Plan urlopu',
region: 'center',
split: true,
});
this.history = Ext.create("Ext.panel.Panel", {
collapsed: true,
collapsible: true,
region: 'east',
split: true,
width: 300,
animCollapse: false,
title: 'test'
});
this.items = [this.tree, this.grid, this.history];
this.callParent();
},
getScheduler: function () {
return this.grid;
}
});
如果我将左侧面板移动到外部文件,我的布局崩溃面板在折叠时不应该有动画,当我折叠它并尝试恢复我的工具栏和状态栏消失时:/
这是我的代码:http ://dl.dropbox.com/u/1206389/layout.zip
我的问题是:
- 如何创建布局并将部分分离到外部文件?
- 我必须为每个控件创建别名吗?有什么好处?
- 如何使用 Ext.Loader 按需更正加载组件(在我的例子中是接口的一部分)
- 如何将状态栏和工具栏添加到视口?我做对了吗?
最后我的布局正确吗?欢迎任何建议:)