-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
40 lines (36 loc) · 913 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
40
Ext.Loader.setPath('Ext.app', './');
Ext.application({
name: 'CRM.CustomerProvider',
appFolder: 'app',
extend: 'Ext.app.BundledApplication',
views: [
'Master',
'Detail'
],
controllers: [
'Master'
],
stores: [
'People'
],
modules: ['Master'],
launch: function () {
Ext.create('widget.window', {
height: 300,
width: 600,
title: 'Constraining Window, plain: true',
closable: false,
layout: 'border',
items: [
{
region: 'center',
xtype: 'core-MasterView'
},
{
region: 'east',
xtype: 'core-DetailView'
}]
}).show();
console.log((this.isModule ? 'Module' : 'App') + ' example launched.');
}
});