diff options
author | Abyss777 <abyss@fox5.ru> | 2017-09-07 09:12:34 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-09-07 09:12:34 +0500 |
commit | e4acd577b0f4d83780d8101c3dc5ba177d649604 (patch) | |
tree | 28eea451b90f96be8b1355a0ea8c7c4e67485a12 /web/app/view/Statistics.js | |
parent | 019fccd1bd4a123fe93228462b33f14889b23394 (diff) | |
download | trackermap-web-e4acd577b0f4d83780d8101c3dc5ba177d649604.tar.gz trackermap-web-e4acd577b0f4d83780d8101c3dc5ba177d649604.tar.bz2 trackermap-web-e4acd577b0f4d83780d8101c3dc5ba177d649604.zip |
- Save attributes with correct types
- Make two toolbars scrollable
Diffstat (limited to 'web/app/view/Statistics.js')
-rw-r--r-- | web/app/view/Statistics.js | 47 |
1 files changed, 25 insertions, 22 deletions
diff --git a/web/app/view/Statistics.js b/web/app/view/Statistics.js index d5176a37..55e4d507 100644 --- a/web/app/view/Statistics.js +++ b/web/app/view/Statistics.js @@ -25,28 +25,31 @@ Ext.define('Traccar.view.Statistics', { controller: 'statistics', store: 'Statistics', - tbar: [{ - xtype: 'tbtext', - html: Strings.reportFrom - }, { - xtype: 'datefield', - reference: 'fromDateField', - startDay: Traccar.Style.weekStartDay, - format: Traccar.Style.dateFormat, - value: new Date(new Date().getTime() - 24 * 60 * 60 * 1000) - }, '-', { - xtype: 'tbtext', - html: Strings.reportTo - }, { - xtype: 'datefield', - reference: 'toDateField', - startDay: Traccar.Style.weekStartDay, - format: Traccar.Style.dateFormat, - value: new Date() - }, '-', { - text: Strings.reportShow, - handler: 'onShowClick' - }], + tbar: { + scrollable: true, + items: [{ + xtype: 'tbtext', + html: Strings.reportFrom + }, { + xtype: 'datefield', + reference: 'fromDateField', + startDay: Traccar.Style.weekStartDay, + format: Traccar.Style.dateFormat, + value: new Date(new Date().getTime() - 24 * 60 * 60 * 1000) + }, '-', { + xtype: 'tbtext', + html: Strings.reportTo + }, { + xtype: 'datefield', + reference: 'toDateField', + startDay: Traccar.Style.weekStartDay, + format: Traccar.Style.dateFormat, + value: new Date() + }, '-', { + text: Strings.reportShow, + handler: 'onShowClick' + }] + }, columns: { defaults: { |