-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathapp.js
39 lines (33 loc) · 758 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// enable and configure loader
Ext.Loader.setConfig({
enabled:true,
paths:{
Ext:'ext/src',
My:'app'
}
});
Ext.application({
name: 'DEMO', // Global namespace
appFolder: 'app',
controllers: [
'LayoutController',
'CustomerListController',
'VendorListController',
'CustomerAddController',
'CustomerEditController',
'VendorAddController'
],
autoCreateViewport : false,
launch: function() {
Ext.create('Ext.container.Viewport', {
layout: 'border',
items: [
{ xtype: 'ManagementArea' },
{ xtype: 'ListsContainer' },
{ xtype: 'AppHeader' }
]
});
DEMO.selectedCustomersId = 0;
DEMO.selectedVendorsId = 0;
}
});