]> git.proxmox.com Git - extjs.git/blame - extjs/examples/classic/neptune-components/app/view/Content.js
add extjs 6.0.1 sources
[extjs.git] / extjs / examples / classic / neptune-components / app / view / Content.js
CommitLineData
6527f429
DM
1Ext.define('Neptune.view.Content', {\r
2 extend: 'Ext.panel.Panel',\r
3 xtype: 'content',\r
4\r
5 layout: {\r
6 type: 'card',\r
7 deferredRender: true\r
8 },\r
9 bodyPadding: '10 ' + (Ext.getScrollbarSize().width + 10) + ' 10 10',\r
10 scrollable: true,\r
11 items: [\r
12 { xtype: 'panels' },\r
13 { xtype: 'framedPanels' },\r
14 { xtype: 'accordions' },\r
15 { xtype: 'toolbars' },\r
16 { xtype: 'buttons' },\r
17 { xtype: 'menuButtons' },\r
18 { xtype: 'splitButtons' },\r
19 { xtype: 'buttonGroups' },\r
20 { xtype: 'menus' },\r
21 { xtype: 'formFields' },\r
22 { xtype: 'forms' },\r
23 { xtype: 'fieldsets' },\r
24 { xtype: 'windows' },\r
25 { xtype: 'tabs' },\r
26 { xtype: 'bottomTabs' },\r
27 { xtype: 'overflowTabs' },\r
28 { xtype: 'trees' },\r
29 { xtype: 'grids' },\r
30 { xtype: 'panelTabToolbarGrid' },\r
31 { xtype: 'toolbarsInPanels' },\r
32 { xtype: 'toolbarsInTabs' },\r
33 { xtype: 'borderLayout' },\r
34 { xtype: 'borderLayoutWindow' },\r
35 { xtype: 'formWithTabs' },\r
36 { xtype: 'nestedTabs' }\r
37 ]\r
38\r
39});