nohuhu,
Ну да.
Классный у них там app.js
Ext.application({
name: 'Admin',
extend: 'Admin.Application',
requires: [
'Admin.*'
]
});
А вот так у меня:
Ext.application({
name: "PartAccount",
appFolder: 'Content/app',
views: [
//...
],
models: [
//...
],
stores: [
//...
],
controllers: [
//...
],
viewport: {
autoMaximize: true
},
launch: function () {
var Viewport = Ext.create("Ext.container.Viewport", {
layout: "border",
style: 'background: #fff; text-align:left;',
frame: true,
items: [
{ xtype: "viewContainerHeader", id: "viewContainerHeader" },
{ xtype: "viewContainerFooter", id: "viewContainerFooter" },
{ xtype: "viewContainerLeft", id: "viewContainerLeft" },
{ xtype: "viewContainerRight", id: "viewContainerRight" },
{ xtype: "viewContainerCentral", id: "viewContainerCentral" },
]
});
Viewport.add(
Ext.create("widget.viewContainerCentralPanel", { id: "viewContainerCentral", autoScroll: true })
);
}
});
Сужу разбираюсь уже 2-й день, пока мало что понятно ...
Вот бы описание!