diff options
author | Abyss777 <abyss@fox5.ru> | 2017-03-23 14:37:23 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-03-23 14:37:23 +0500 |
commit | e5cda1b3e0a4735abd512652b5df30331ad6782e (patch) | |
tree | 497060d92985b6dbfdcfa5401882c93e6b140a9e /web/app/view/Devices.js | |
parent | 49f6c1456371dd0bc066a9d6ad40bef824c39977 (diff) | |
download | trackermap-web-e5cda1b3e0a4735abd512652b5df30331ad6782e.tar.gz trackermap-web-e5cda1b3e0a4735abd512652b5df30331ad6782e.tar.bz2 trackermap-web-e5cda1b3e0a4735abd512652b5df30331ad6782e.zip |
- Remove search string
- Rename functions and variables
- Fix device deselect
- Fix appearing features and double visibility check
Diffstat (limited to 'web/app/view/Devices.js')
-rw-r--r-- | web/app/view/Devices.js | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/web/app/view/Devices.js b/web/app/view/Devices.js index 84ed800d..eee214ee 100644 --- a/web/app/view/Devices.js +++ b/web/app/view/Devices.js @@ -96,12 +96,7 @@ Ext.define('Traccar.view.Devices', { items: [{ text: Strings.sharedName, dataIndex: 'name', - filter: { - type: 'string', - itemDefaults: { - emptyText: Strings.deviceSearchFor - } - } + filter: 'string' }, { text: Strings.deviceIdentifier, dataIndex: 'uniqueId', @@ -156,9 +151,13 @@ Ext.define('Traccar.view.Devices', { store: 'DeviceStatuses' }, renderer: function (value, metaData) { + var status; if (value) { - metaData.tdCls = Ext.getStore('DeviceStatuses').getById(value).get('tdCls'); - return Ext.getStore('DeviceStatuses').getById(value).get('name'); + status = Ext.getStore('DeviceStatuses').getById(value); + if (status) { + metaData.tdCls = status.get('color'); + return status.get('name'); + } } } }] |