13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
Ext.define('Neptune.view.Navigation', {
    extend: 'Ext.tree.Panel',
    xtype: 'navigation',
    width: 220,
    rootVisible: false,
    useArrows: true,
    split: true,
    root: {
        children: [
            {
                text: 'Panels',
                expanded: true,
                children: [
                    { text: 'Basic Panels', id: 'panels', leaf: true },
                    { text: 'Framed Panels', id: 'framed-panels', leaf: true },
                    { text: 'Accordions', id: 'accordions', leaf: true }
                ]
            },
            {
                text: 'Toolbars',
                expanded: true,
                children: [
                    { text: 'Toolbars', id: 'toolbars', leaf: true }
                ]
            },
            {
                text: 'Buttons',
                expanded: true,
                children: [
                    { text: 'Basic Buttons', id: 'buttons', leaf: true },
                    { text: 'Menu Buttons', id: 'menuButtons', leaf: true },
                    { text: 'Split Buttons', id: 'splitButtons', leaf: true },
                    { text: 'ButtonGroups', id: 'buttonGroups', leaf: true }
                ]
            },
            {
                text: 'Forms',
                expanded: true,
                children: [
                    { text: 'Form Fields', id: 'formFields', leaf: true },
                    { text: 'Fieldsets', id: 'fieldsets', leaf: true },
                    { text: 'Forms', id: 'forms', leaf: true }
                ]
            },
            {
                text: 'Windows',
                expanded: true,
                children: [
                    { text: 'Windows', id: 'windows', leaf: true }
                ]
            },
            {
                text: 'Tabs',
                expanded: true,
                children: [
                    { text: 'Basic Tabs', id: 'tabs', leaf: true },
                    { text: 'Bottom Tabs', id: 'bottomTabs', leaf: true },
                    { text: 'Tab Scrolling', id: 'overflowTabs', leaf: true }
                ]
            },
            {
                text: 'Trees',
                expanded: true,
                children: [
                    { text: 'Trees', id: 'trees', leaf: true }
                ]
            },
            {
                text: 'Grids',
                expanded: true,
                children: [
                    { text: 'Grids', id: 'grids', leaf: true }
                ]
            },
            {
                text: 'Combinations',
                expanded: true,
                children: [
                    { text: 'Panel Tab Toolbar Grid', id: 'panelTabToolbarGrid', leaf: true },
                    { text: 'Toolbars In Panels', id: 'toolbarsInPanels', leaf: true },
                    { text: 'Toolbars In Tabs', id: 'toolbarsInTabs', leaf: true },
                    { text: 'Border Layout', id: 'borderLayout', leaf: true },
                    { text: 'Form with Inner Tabs', id: 'formWithTabs', leaf: true },
                    { text: 'Nested Tab Panels', id: 'nestedTabs', leaf: true },
                    { text: 'Border Layout Window', id: 'borderLayoutWindow', leaf: true }
                ]
            }
        ]
    }
});