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
| Ext.define('Neptune.view.toolbar.Toolbars', {
| extend: 'Ext.container.Container',
| xtype: 'toolbars',
| id: 'toolbars',
|
| layout: {
| type: 'table',
| columns: 3,
| tdAttrs: { style: 'padding: 7px; vertical-align: top;' }
| },
| defaults: {
| width: 600,
| border: Neptune.theme === 'neptune' ? 4 : undefined
| },
| items: [
| { xtype: 'basicToolbar' },
| { xtype: 'verticalFieldsToolbar', width: null, rowspan: 5 },
| { xtype: 'verticalToolbar', width: null, rowspan: 10 },
| { xtype: 'mediumToolbar' },
| { xtype: 'largeToolbar' },
| { xtype: 'mixedToolbar' },
| { xtype: 'fieldsToolbar' },
| { xtype: 'fieldsToolbar2' },
| { xtype: 'verticalMenuOverflowToolbar', height: 170, width: null, rowspan: 3 },
| { xtype: 'menuOverflowToolbar' },
| { xtype: 'scrollerOverflowToolbar' },
| { xtype: 'simpleButtonGroupToolbar' },
| { xtype: 'verticalScrollerOverflowToolbar', height: 300, width: null, rowspan: 2 },
| { xtype: 'complexButtonGroupToolbar' }
| ]
| });
|
|