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
| Ext.define('Pandora.view.StationsList', {
| extend: 'Ext.grid.Panel',
| alias: 'widget.stationslist',
|
| store: 'Stations',
| title: 'Stations',
| hideHeaders: true,
|
| initComponent: function() {
| this.columns = [{
| dataIndex: 'name',
| flex: 1
| }];
|
| this.dockedItems = [{
| dock: 'bottom',
| xtype: 'toolbar',
| items: [{
| xtype: 'button',
| text: 'Settings',
| action: 'settings'
| }, {
| xtype: 'buttongroup',
| items: [{
| text: 'By Date',
| action: 'filter-date'
| }, {
| text: 'ABC',
| action: 'filter-name'
| }]
| }]
| }];
|
| this.callParent();
| }
| });
|
|