diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-09-06 23:33:09 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-06 23:33:09 +1200 |
commit | 5e6a5e69994aff3c1fe9aca427c746438a22c325 (patch) | |
tree | ae00dce3f93e1a1b44de84dc1f38aa0cdc4be43b /web/app/view/UserDialog.js | |
parent | 0d3c05a24992eeeba02032e474d3a9bbb3239f10 (diff) | |
parent | d7afbb815c7d185df9143f886a7494cb73a69ac1 (diff) | |
download | trackermap-server-5e6a5e69994aff3c1fe9aca427c746438a22c325.tar.gz trackermap-server-5e6a5e69994aff3c1fe9aca427c746438a22c325.tar.bz2 trackermap-server-5e6a5e69994aff3c1fe9aca427c746438a22c325.zip |
Merge pull request #2287 from Abyss777/get_center_from_map
Retrieve map state for user and server
Diffstat (limited to 'web/app/view/UserDialog.js')
-rw-r--r-- | web/app/view/UserDialog.js | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/web/app/view/UserDialog.js b/web/app/view/UserDialog.js index 07fc1431f..f9e704ee5 100644 --- a/web/app/view/UserDialog.js +++ b/web/app/view/UserDialog.js @@ -24,7 +24,7 @@ Ext.define('Traccar.view.UserDialog', { controller: 'userDialog', title: Strings.settingsUser, - items: [{ + items: { xtype: 'form', items: [{ xtype: 'textfield', @@ -71,16 +71,19 @@ Ext.define('Traccar.view.UserDialog', { 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 }, { @@ -89,5 +92,24 @@ Ext.define('Traccar.view.UserDialog', { 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' }] }); |