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
| Ext.define('Neptune.view.toolbar.widget.MenuOverflow', {
| extend: 'Ext.toolbar.Toolbar',
| xtype: 'menuOverflowToolbar',
| enableOverflow: true,
| items: [
| { xtype: 'smallButton' },
| { xtype: 'smallMenuButton', icon: true },
| { xtype: 'smallSplitButton' },
| { xtype: 'smallButton' },
| { xtype: 'smallMenuButton', icon: true },
| { xtype: 'smallSplitButton' },
| { xtype: 'smallButton' },
| { xtype: 'smallMenuButton', icon: true },
| { xtype: 'smallSplitButton' },
| { xtype: 'smallButton' },
| { xtype: 'smallMenuButton', icon: true },
| { xtype: 'smallSplitButton' },
| { xtype: 'smallButton' },
| { xtype: 'smallMenuButton', icon: true },
| { xtype: 'smallSplitButton' },
| { xtype: 'textField' },
| { xtype: 'comboBox' },
| { xtype: 'dateField' },
| { xtype: 'numberField' },
| { xtype: 'searchField' }
| ]
| });
|
|