diff options
Diffstat (limited to 'web/app/view/ServerDialog.js')
-rw-r--r-- | web/app/view/ServerDialog.js | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/web/app/view/ServerDialog.js b/web/app/view/ServerDialog.js index dd4579168..46c76ffa8 100644 --- a/web/app/view/ServerDialog.js +++ b/web/app/view/ServerDialog.js @@ -18,10 +18,10 @@ Ext.define('Traccar.view.ServerDialog', { extend: 'Traccar.view.BaseEditDialog', requires: [ - 'Traccar.view.BaseEditDialogController' + 'Traccar.view.MapPickerDialogController' ], - controller: 'baseEditDialog', + controller: 'mapPickerDialog', title: Strings.serverTitle, items: { @@ -67,16 +67,19 @@ Ext.define('Traccar.view.ServerDialog', { valueField: 'key' }, { xtype: 'numberfield', + reference: 'latitude', name: 'latitude', fieldLabel: Strings.positionLatitude, decimalPrecision: Traccar.Style.coordinatePrecision }, { xtype: 'numberfield', + reference: 'longitude', name: 'longitude', fieldLabel: Strings.positionLongitude, decimalPrecision: Traccar.Style.coordinatePrecision }, { xtype: 'numberfield', + reference: 'zoom', name: 'zoom', fieldLabel: Strings.serverZoom }, { @@ -85,5 +88,24 @@ Ext.define('Traccar.view.ServerDialog', { fieldLabel: Strings.settingsTwelveHourFormat, allowBlank: false }] - } + }, + + buttons: [{ + text: Strings.sharedAttributes, + handler: 'showAttributesView' + }, { + glyph: 'xf041@FontAwesome', + minWidth: 0, + handler: 'getMapState', + tooltip: Strings.sharedGetMapState, + tooltipType: 'title' + }, { + xtype: 'tbfill' + }, { + text: Strings.sharedSave, + handler: 'onSaveClick' + }, { + text: Strings.sharedCancel, + handler: 'closeView' + }] }); |