From f30f6961890371e026cd548874a31292e2de3c21 Mon Sep 17 00:00:00 2001 From: Abyss777 Date: Wed, 8 Mar 2017 09:06:46 +0500 Subject: Organize onCommandClick function --- web/app/view/DevicesController.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'web') 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(); -- cgit v1.2.3