aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/command/CommandDialog.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/app/view/command/CommandDialog.js')
-rw-r--r--web/app/view/command/CommandDialog.js23
1 files changed, 22 insertions, 1 deletions
diff --git a/web/app/view/command/CommandDialog.js b/web/app/view/command/CommandDialog.js
index ef99c4db6..7f4b3c592 100644
--- a/web/app/view/command/CommandDialog.js
+++ b/web/app/view/command/CommandDialog.js
@@ -37,7 +37,28 @@ Ext.define('Traccar.view.command.CommandDialog', {
fieldLabel: strings.command_type,
store: 'CommandTypes',
displayField: 'name',
- valueField: 'key'
+ valueField: 'key',
+ listeners: {
+ select: 'onSelect'
+ }
+ }, {
+ xtype: 'fieldcontainer',
+ reference: 'paramPositionFix',
+ name: 'other',
+ hidden: true,
+
+ items: [{
+ xtype: 'numberfield',
+ fieldLabel: strings.command_frequency,
+ name: 'frequency'
+ }, {
+ xtype: 'combobox',
+ fieldLabel: strings.command_unit,
+ name: 'unit',
+ store: 'TimeUnits',
+ displayField: 'name',
+ valueField: 'multiplier'
+ }]
}]
},