diff options
author | Abyss777 <abyss@fox5.ru> | 2017-03-29 10:59:51 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-03-29 10:59:51 +0500 |
commit | e37d175f5bb0613a9b64bc34368fa14e60bdb800 (patch) | |
tree | 77bd639583cb828fbebad1ea719c2218e3abc240 /web/app/view/Devices.js | |
parent | c6a1dc961500b62379b70b8629fc5c8da688db0b (diff) | |
download | trackermap-web-e37d175f5bb0613a9b64bc34368fa14e60bdb800.tar.gz trackermap-web-e37d175f5bb0613a9b64bc34368fa14e60bdb800.tar.bz2 trackermap-web-e37d175f5bb0613a9b64bc34368fa14e60bdb800.zip |
Move edit windows to edit subdirectory
Diffstat (limited to 'web/app/view/Devices.js')
-rw-r--r-- | web/app/view/Devices.js | 165 |
1 files changed, 0 insertions, 165 deletions
diff --git a/web/app/view/Devices.js b/web/app/view/Devices.js deleted file mode 100644 index eee214ee..00000000 --- a/web/app/view/Devices.js +++ /dev/null @@ -1,165 +0,0 @@ -/* - * Copyright 2015 - 2017 Anton Tananaev (anton@traccar.org) - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -Ext.define('Traccar.view.Devices', { - extend: 'Ext.grid.Panel', - xtype: 'devicesView', - - requires: [ - 'Ext.grid.filters.Filters', - 'Traccar.view.DevicesController', - 'Traccar.view.EditToolbar' - ], - - controller: 'devices', - - plugins: 'gridfilters', - - store: 'VisibleDevices', - - stateful: true, - stateId: 'devices-grid', - - tbar: { - componentCls: 'toolbar-header-style', - items: [{ - xtype: 'tbtext', - html: Strings.deviceTitle, - baseCls: 'x-panel-header-title-default' - }, { - xtype: 'tbfill' - }, { - xtype: 'button', - disabled: true, - handler: 'onAddClick', - reference: 'toolbarAddButton', - glyph: 'xf067@FontAwesome', - tooltip: Strings.sharedAdd, - tooltipType: 'title' - }, { - xtype: 'button', - disabled: true, - handler: 'onEditClick', - reference: 'toolbarEditButton', - glyph: 'xf040@FontAwesome', - tooltip: Strings.sharedEdit, - tooltipType: 'title' - }, { - xtype: 'button', - disabled: true, - handler: 'onRemoveClick', - reference: 'toolbarRemoveButton', - glyph: 'xf00d@FontAwesome', - tooltip: Strings.sharedRemove, - tooltipType: 'title' - }, { - xtype: 'button', - disabled: true, - handler: 'onGeofencesClick', - reference: 'toolbarGeofencesButton', - glyph: 'xf21d@FontAwesome', - tooltip: Strings.sharedGeofences, - tooltipType: 'title' - }, { - disabled: true, - handler: 'onCommandClick', - reference: 'deviceCommandButton', - glyph: 'xf093@FontAwesome', - tooltip: Strings.deviceCommand, - tooltipType: 'title' - }] - }, - - listeners: { - selectionchange: 'onSelectionChange' - }, - - columns: { - defaults: { - flex: 2, - minWidth: Traccar.Style.columnWidthNormal - }, - items: [{ - text: Strings.sharedName, - dataIndex: 'name', - filter: 'string' - }, { - text: Strings.deviceIdentifier, - dataIndex: 'uniqueId', - hidden: true - }, { - text: Strings.sharedPhone, - dataIndex: 'phone', - hidden: true - }, { - text: Strings.deviceModel, - dataIndex: 'model', - hidden: true - }, { - text: Strings.deviceContact, - dataIndex: 'contact', - hidden: true - }, { - text: Strings.groupDialog, - dataIndex: 'groupId', - hidden: true, - filter: { - type: 'list', - labelField: 'name', - store: 'Groups' - }, - renderer: function (value) { - var group; - if (value !== 0) { - group = Ext.getStore('Groups').getById(value); - return group ? group.get('name') : value; - } - } - }, { - text: Strings.deviceLastUpdate, - dataIndex: 'lastUpdate', - renderer: function (value) { - if (value) { - if (Traccar.app.getPreference('twelveHourFormat', false)) { - return Ext.Date.format(value, Traccar.Style.dateTimeFormat12); - } else { - return Ext.Date.format(value, Traccar.Style.dateTimeFormat24); - } - } - } - }, { - text: Strings.deviceStatus, - dataIndex: 'status', - flex: 1, - filter: { - type: 'list', - labelField: 'name', - store: 'DeviceStatuses' - }, - renderer: function (value, metaData) { - var status; - if (value) { - status = Ext.getStore('DeviceStatuses').getById(value); - if (status) { - metaData.tdCls = status.get('color'); - return status.get('name'); - } - } - } - }] - } -}); |