diff options
author | Abyss777 <abyss@fox5.ru> | 2017-09-14 09:38:14 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-09-14 09:38:14 +0500 |
commit | be47d612285d484e2d0a2aa43174fb8e36acd816 (patch) | |
tree | 311da517ca347969c290b06285b4451fdfc6e98b /web/app/view/dialog/SendCommandController.js | |
parent | a5d36c62facad98c409b9fcd4f8b92c3d47601ab (diff) | |
download | trackermap-web-be47d612285d484e2d0a2aa43174fb8e36acd816.tar.gz trackermap-web-be47d612285d484e2d0a2aa43174fb8e36acd816.tar.bz2 trackermap-web-be47d612285d484e2d0a2aa43174fb8e36acd816.zip |
Improve command type formatting
Diffstat (limited to 'web/app/view/dialog/SendCommandController.js')
-rw-r--r-- | web/app/view/dialog/SendCommandController.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/web/app/view/dialog/SendCommandController.js b/web/app/view/dialog/SendCommandController.js index 3bd2ad4a..0e9442ab 100644 --- a/web/app/view/dialog/SendCommandController.js +++ b/web/app/view/dialog/SendCommandController.js @@ -36,9 +36,7 @@ Ext.define('Traccar.view.dialog.SendCommandController', { Ext.Ajax.request({ scope: this, url: 'api/commands/send', - jsonData: record.getData({ - persist: true - }), + jsonData: record.getData(), callback: this.onSendResult }); }, @@ -89,5 +87,10 @@ Ext.define('Traccar.view.dialog.SendCommandController', { } else { Traccar.app.showError(response); } + }, + + closeView: function () { + this.lookupReference('commandsComboBox').getStore().removeAll(); + this.callParent(arguments); } }); |