aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/UserDialog.js
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2016-09-06 09:24:33 +0500
committerAbyss777 <abyss@fox5.ru>2016-09-06 09:24:33 +0500
commit0affb8110de3c53942c85a220babc859e2a7727d (patch)
tree05520c0a818bc0c7beaedacdd8c24c24e7d12d21 /web/app/view/UserDialog.js
parentb7403aaadd130bf1496b97c07667842813d99550 (diff)
downloadtraccar-server-0affb8110de3c53942c85a220babc859e2a7727d.tar.gz
traccar-server-0affb8110de3c53942c85a220babc859e2a7727d.tar.bz2
traccar-server-0affb8110de3c53942c85a220babc859e2a7727d.zip
Move button to bottom bar
Diffstat (limited to 'web/app/view/UserDialog.js')
-rw-r--r--web/app/view/UserDialog.js30
1 files changed, 21 insertions, 9 deletions
diff --git a/web/app/view/UserDialog.js b/web/app/view/UserDialog.js
index c6b732513..46b86dd5d 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',
@@ -70,9 +70,8 @@ Ext.define('Traccar.view.UserDialog', {
displayField: 'name',
valueField: 'key'
}, {
- xtype: 'fieldset',
+ xtype: 'fieldcontainer',
reference: 'mapCenter',
- title: Strings.sharedMapCenter,
defaultType: 'numberfield',
items: [{
name: 'latitude',
@@ -85,12 +84,6 @@ Ext.define('Traccar.view.UserDialog', {
}, {
name: 'zoom',
fieldLabel: Strings.serverZoom
- }, {
- xtype: 'button',
- margin: Traccar.Style.inFormButtonMargin,
- enableToggle: false,
- text: Strings.sharedGetFromMap,
- handler: 'getFromMap'
}]
}, {
xtype: 'checkboxfield',
@@ -98,5 +91,24 @@ Ext.define('Traccar.view.UserDialog', {
fieldLabel: Strings.settingsTwelveHourFormat,
allowBlank: false
}]
+ },
+
+ buttons: [{
+ text: Strings.sharedAttributes,
+ handler: 'showAttributesView'
+ }, {
+ glyph: 'xf276@FontAwesome',
+ minWidth: 0,
+ handler: 'getFromMap',
+ tooltip: Strings.sharedGetFromMap,
+ tooltipType: 'title'
+ }, {
+ xtype: 'tbfill'
+ }, {
+ text: Strings.sharedSave,
+ handler: 'onSaveClick'
+ }, {
+ text: Strings.sharedCancel,
+ handler: 'closeView'
}]
});