diff options
author | Abyss777 <abyss@fox5.ru> | 2016-12-30 13:51:02 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-12-30 13:51:02 +0500 |
commit | 7549a78f785edf092099b42a015e4e556bb480b9 (patch) | |
tree | 063aa99429d81b2843434bba9a9c29008e1da6f4 /web/app/view/ReportConfigController.js | |
parent | f5030b90ecde5a50e05cd81ed8d08b6387b8dead (diff) | |
download | trackermap-web-7549a78f785edf092099b42a015e4e556bb480b9.tar.gz trackermap-web-7549a78f785edf092099b42a015e4e556bb480b9.tar.bz2 trackermap-web-7549a78f785edf092099b42a015e4e556bb480b9.zip |
Add option to not show report markers
Diffstat (limited to 'web/app/view/ReportConfigController.js')
-rw-r--r-- | web/app/view/ReportConfigController.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/web/app/view/ReportConfigController.js b/web/app/view/ReportConfigController.js index f76a0820..955b2e96 100644 --- a/web/app/view/ReportConfigController.js +++ b/web/app/view/ReportConfigController.js @@ -57,8 +57,9 @@ Ext.define('Traccar.view.ReportConfigController', { } else if (eventType.length === this.lookupReference('eventTypeField').getStore().getCount() - 1) { eventType = [Traccar.store.ReportEventTypes.allEvents]; } - this.getView().callingPanel.chartType = this.lookupReference('chartTypeField').getValue(); this.getView().callingPanel.eventType = eventType; + this.getView().callingPanel.chartType = this.lookupReference('chartTypeField').getValue(); + this.getView().callingPanel.showMarkers = this.lookupReference('showMarkersField').getValue(); this.getView().callingPanel.fromDate = this.lookupReference('fromDateField').getValue(); this.getView().callingPanel.fromTime = this.lookupReference('fromTimeField').getValue(); this.getView().callingPanel.toDate = this.lookupReference('toDateField').getValue(); |