diff options
author | Renaud Allard <renaud@allard.it> | 2016-10-19 11:23:25 +0200 |
---|---|---|
committer | Renaud Allard <renaud@allard.it> | 2016-10-19 11:23:25 +0200 |
commit | f43b8be3eb7cb2e498d02bdbe9eb37202fb2fc9e (patch) | |
tree | df8abac652c991d6acd82b5fa779260a22f85e33 /web | |
parent | f7beb6ce1c4167b4d086bb0a6da6f9f09805f575 (diff) | |
download | etbsa-traccar-web-f43b8be3eb7cb2e498d02bdbe9eb37202fb2fc9e.tar.gz etbsa-traccar-web-f43b8be3eb7cb2e498d02bdbe9eb37202fb2fc9e.tar.bz2 etbsa-traccar-web-f43b8be3eb7cb2e498d02bdbe9eb37202fb2fc9e.zip |
Add a new hidden column in devices list showing the uniqueId
Diffstat (limited to 'web')
-rw-r--r-- | web/app/view/Devices.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/web/app/view/Devices.js b/web/app/view/Devices.js index 470ff1f..02f92ea 100644 --- a/web/app/view/Devices.js +++ b/web/app/view/Devices.js @@ -151,6 +151,11 @@ Ext.define('Traccar.view.Devices', { dataIndex: 'name', flex: 1 }, { + text: Strings.deviceIdentifier, + dataIndex: 'uniqueId', + hidden: true, + flex: 1 + }, { text: Strings.deviceLastUpdate, dataIndex: 'lastUpdate', flex: 1, |