]> git.proxmox.com Git - extjs.git/blame - extjs/examples/classic/neptune-components/app/view/Navigation.js
add extjs 6.0.1 sources
[extjs.git] / extjs / examples / classic / neptune-components / app / view / Navigation.js
CommitLineData
6527f429
DM
1Ext.define('Neptune.view.Navigation', {\r
2 extend: 'Ext.tree.Panel',\r
3 xtype: 'navigation',\r
4 width: 220,\r
5 rootVisible: false,\r
6 useArrows: true,\r
7 split: true,\r
8 root: {\r
9 children: [\r
10 {\r
11 text: 'Panels',\r
12 expanded: true,\r
13 children: [\r
14 { text: 'Basic Panels', id: 'panels', leaf: true },\r
15 { text: 'Framed Panels', id: 'framed-panels', leaf: true },\r
16 { text: 'Accordions', id: 'accordions', leaf: true }\r
17 ]\r
18 },\r
19 {\r
20 text: 'Toolbars',\r
21 expanded: true,\r
22 children: [\r
23 { text: 'Toolbars', id: 'toolbars', leaf: true }\r
24 ]\r
25 },\r
26 {\r
27 text: 'Buttons',\r
28 expanded: true,\r
29 children: [\r
30 { text: 'Basic Buttons', id: 'buttons', leaf: true },\r
31 { text: 'Menu Buttons', id: 'menuButtons', leaf: true },\r
32 { text: 'Split Buttons', id: 'splitButtons', leaf: true },\r
33 { text: 'ButtonGroups', id: 'buttonGroups', leaf: true }\r
34 ]\r
35 },\r
36 {\r
37 text: 'Menus',\r
38 expanded: true,\r
39 children: [\r
40 { text: 'Menus', id: 'menus', leaf: true }\r
41 ]\r
42 },\r
43 {\r
44 text: 'Forms',\r
45 expanded: true,\r
46 children: [\r
47 { text: 'Form Fields', id: 'formFields', leaf: true },\r
48 { text: 'Fieldsets', id: 'fieldsets', leaf: true },\r
49 { text: 'Forms', id: 'forms', leaf: true }\r
50 ]\r
51 },\r
52 {\r
53 text: 'Windows',\r
54 expanded: true,\r
55 children: [\r
56 { text: 'Windows', id: 'windows', leaf: true }\r
57 ]\r
58 },\r
59 {\r
60 text: 'Tabs',\r
61 expanded: true,\r
62 children: [\r
63 { text: 'Basic Tabs', id: 'tabs', leaf: true },\r
64 { text: 'Bottom Tabs', id: 'bottomTabs', leaf: true },\r
65 { text: 'Tab Scrolling', id: 'overflowTabs', leaf: true }\r
66 ]\r
67 },\r
68 {\r
69 text: 'Trees',\r
70 expanded: true,\r
71 children: [\r
72 { text: 'Trees', id: 'trees', leaf: true }\r
73 ]\r
74 },\r
75 {\r
76 text: 'Grids',\r
77 expanded: true,\r
78 children: [\r
79 { text: 'Grids', id: 'grids', leaf: true }\r
80 ]\r
81 },\r
82 {\r
83 text: 'Combinations',\r
84 expanded: true,\r
85 children: [\r
86 { text: 'Panel Tab Toolbar Grid', id: 'panelTabToolbarGrid', leaf: true },\r
87 { text: 'Toolbars In Panels', id: 'toolbarsInPanels', leaf: true },\r
88 { text: 'Toolbars In Tabs', id: 'toolbarsInTabs', leaf: true },\r
89 { text: 'Border Layout', id: 'borderLayout', leaf: true },\r
90 { text: 'Form with Inner Tabs', id: 'formWithTabs', leaf: true },\r
91 { text: 'Nested Tab Panels', id: 'nestedTabs', leaf: true },\r
92 { text: 'Border Layout Window', id: 'borderLayoutWindow', leaf: true }\r
93 ]\r
94 }\r
95 ]\r
96 }\r
97});