aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/Devices.js
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-03-23 14:37:23 +0500
committerAbyss777 <abyss@fox5.ru>2017-03-23 14:37:23 +0500
commite5cda1b3e0a4735abd512652b5df30331ad6782e (patch)
tree497060d92985b6dbfdcfa5401882c93e6b140a9e /web/app/view/Devices.js
parent49f6c1456371dd0bc066a9d6ad40bef824c39977 (diff)
downloadetbsa-traccar-web-e5cda1b3e0a4735abd512652b5df30331ad6782e.tar.gz
etbsa-traccar-web-e5cda1b3e0a4735abd512652b5df30331ad6782e.tar.bz2
etbsa-traccar-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.js15
1 files changed, 7 insertions, 8 deletions
diff --git a/web/app/view/Devices.js b/web/app/view/Devices.js
index 84ed800..eee214e 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');
+ }
}
}
}]