diff options
author | Abyss777 <abyss@fox5.ru> | 2017-07-17 09:21:43 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-07-17 09:21:43 +0500 |
commit | 714da0355baee78fb28e97aed95db68a63c43424 (patch) | |
tree | 2972a37765510e6c53a91e652538baab1d110ca4 /web/app/view/ReportController.js | |
parent | dab4694bcab525bcc26e6af42aacc45901093dc2 (diff) | |
download | trackermap-web-714da0355baee78fb28e97aed95db68a63c43424.tar.gz trackermap-web-714da0355baee78fb28e97aed95db68a63c43424.tar.bz2 trackermap-web-714da0355baee78fb28e97aed95db68a63c43424.zip |
Implement Geofences column for Devices with filtering
Diffstat (limited to 'web/app/view/ReportController.js')
-rw-r--r-- | web/app/view/ReportController.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/web/app/view/ReportController.js b/web/app/view/ReportController.js index 7dfeaf3f..ff39a560 100644 --- a/web/app/view/ReportController.js +++ b/web/app/view/ReportController.js @@ -456,11 +456,7 @@ Ext.define('Traccar.view.ReportController', { }, { text: Strings.sharedGeofence, dataIndex: 'geofenceId', - renderer: function (value) { - if (value !== 0) { - return Ext.getStore('Geofences').getById(value).get('name'); - } - } + renderer: Traccar.AttributeFormatter.getFormatter('geofenceId') }], summaryColumns: [{ |