1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| Ext.define('Neptune.view.panel.Accordions', {
| extend: 'Ext.container.Container',
| xtype: 'accordions',
| id: 'accordions',
|
| layout: {
| type: 'table',
| columns: 2,
| tdAttrs: { style: 'padding: 7px; vertical-align: top;' }
| },
| defaults: {
| height: 400,
| width: 200
| },
| items: [
| { xtype: 'accordionPanel' },
| { xtype: 'framedAccordionPanel' }
| ]
| });
|
|