aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-03-08 09:06:46 +0500
committerAbyss777 <abyss@fox5.ru>2017-03-08 09:06:46 +0500
commitf30f6961890371e026cd548874a31292e2de3c21 (patch)
treee8649620a02d050b1c2e907212ae2a0ef2cfd041 /web
parent7db1c1cdcf617e146e927c4aadde239959a9d3de (diff)
downloadetbsa-traccar-web-f30f6961890371e026cd548874a31292e2de3c21.tar.gz
etbsa-traccar-web-f30f6961890371e026cd548874a31292e2de3c21.tar.bz2
etbsa-traccar-web-f30f6961890371e026cd548874a31292e2de3c21.zip
Organize onCommandClick function
Diffstat (limited to 'web')
-rw-r--r--web/app/view/DevicesController.js10
1 files changed, 7 insertions, 3 deletions
diff --git a/web/app/view/DevicesController.js b/web/app/view/DevicesController.js
index d65055e..742077b 100644
--- a/web/app/view/DevicesController.js
+++ b/web/app/view/DevicesController.js
@@ -74,16 +74,20 @@ Ext.define('Traccar.view.DevicesController', {
},
onCommandClick: function () {
- var device, deviceId, command, dialog, comboStore, online;
+ var device, deviceId, command, dialog, typesStore, online;
device = this.getView().getSelectionModel().getSelection()[0];
online = device.get('status') === 'online';
deviceId = device.get('id');
+
command = Ext.create('Traccar.model.Command');
command.set('deviceId', deviceId);
command.set('textChannel', !online);
+
dialog = Ext.create('Traccar.view.CommandDialog');
- comboStore = dialog.down('form').down('combobox').getStore();
- comboStore.getProxy().setExtraParam('deviceId', deviceId);
+
+ typesStore = dialog.lookupReference('commandType').getStore();
+ typesStore.getProxy().setExtraParam('deviceId', deviceId);
+
dialog.down('form').loadRecord(command);
dialog.lookupReference('textChannelCheckBox').setDisabled(!online);
dialog.show();