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
| Ext.define('Neptune.view.Content', {
| extend: 'Ext.panel.Panel',
| xtype: 'content',
|
| layout: {
| type: 'card',
| deferredRender: true
| },
| bodyPadding: '10 ' + (Ext.getScrollbarSize().width + 10) + ' 10 10',
| autoScroll: true,
| items: [
| { xtype: 'panels' },
| { xtype: 'framedPanels' },
| { xtype: 'accordions' },
| { xtype: 'toolbars' },
| { xtype: 'buttons' },
| { xtype: 'menuButtons' },
| { xtype: 'splitButtons' },
| { xtype: 'buttonGroups' },
| { xtype: 'formFields' },
| { xtype: 'forms' },
| { xtype: 'fieldsets' },
| { xtype: 'windows' },
| { xtype: 'tabs' },
| { xtype: 'bottomTabs' },
| { xtype: 'overflowTabs' },
| { xtype: 'trees' },
| { xtype: 'grids' },
| { xtype: 'panelTabToolbarGrid' },
| { xtype: 'toolbarsInPanels' },
| { xtype: 'toolbarsInTabs' },
| { xtype: 'borderLayout' },
| { xtype: 'borderLayoutWindow' },
| { xtype: 'formWithTabs' },
| { xtype: 'nestedTabs' }
| ]
|
| })
|
|