aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2016-10-08 15:38:42 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2016-10-08 15:38:42 +1300
commit546237415feccc2cc4974103241a12e4aff3ea06 (patch)
treeefa3ba6d9b20be46e1e7b9bdf871aed9e4d2f223 /web
parent4b5f8366b4f5a41591dd1b4627a97c9211c02fb8 (diff)
downloadetbsa-traccar-web-546237415feccc2cc4974103241a12e4aff3ea06.tar.gz
etbsa-traccar-web-546237415feccc2cc4974103241a12e4aff3ea06.tar.bz2
etbsa-traccar-web-546237415feccc2cc4974103241a12e4aff3ea06.zip
Make some comboboxes non editable
Diffstat (limited to 'web')
-rw-r--r--web/app/view/CommandDialog.js1
-rw-r--r--web/app/view/GeofenceMap.js1
-rw-r--r--web/app/view/Login.js1
-rw-r--r--web/app/view/Report.js2
-rw-r--r--web/app/view/ServerDialog.js9
-rw-r--r--web/app/view/UserDialog.js9
6 files changed, 16 insertions, 7 deletions
diff --git a/web/app/view/CommandDialog.js b/web/app/view/CommandDialog.js
index 9532c53..cf14062 100644
--- a/web/app/view/CommandDialog.js
+++ b/web/app/view/CommandDialog.js
@@ -34,6 +34,7 @@ Ext.define('Traccar.view.CommandDialog', {
store: 'CommandTypes',
displayField: 'name',
valueField: 'type',
+ editable: false,
listeners: {
select: 'onSelect'
}
diff --git a/web/app/view/GeofenceMap.js b/web/app/view/GeofenceMap.js
index 52287fd..16b0721 100644
--- a/web/app/view/GeofenceMap.js
+++ b/web/app/view/GeofenceMap.js
@@ -33,6 +33,7 @@ Ext.define('Traccar.view.GeofenceMap', {
store: 'GeofenceTypes',
valueField: 'key',
displayField: 'name',
+ editable: false,
listeners: {
select: 'onTypeSelect'
}
diff --git a/web/app/view/Login.js b/web/app/view/Login.js
index 3e8f32f..d4ab140 100644
--- a/web/app/view/Login.js
+++ b/web/app/view/Login.js
@@ -47,6 +47,7 @@ Ext.define('Traccar.view.Login', {
store: 'Languages',
displayField: 'name',
valueField: 'code',
+ editable: false,
submitValue: false,
listeners: {
select: 'onSelectLanguage'
diff --git a/web/app/view/Report.js b/web/app/view/Report.js
index 933ead4..18debc6 100644
--- a/web/app/view/Report.js
+++ b/web/app/view/Report.js
@@ -36,7 +36,7 @@ Ext.define('Traccar.view.Report', {
store: 'ReportTypes',
displayField: 'name',
valueField: 'key',
- typeAhead: true,
+ editable: false,
listeners: {
change: 'onTypeChange'
}
diff --git a/web/app/view/ServerDialog.js b/web/app/view/ServerDialog.js
index 659d171..a08851c 100644
--- a/web/app/view/ServerDialog.js
+++ b/web/app/view/ServerDialog.js
@@ -43,7 +43,8 @@ Ext.define('Traccar.view.ServerDialog', {
fieldLabel: Strings.mapLayer,
store: 'MapTypes',
displayField: 'name',
- valueField: 'key'
+ valueField: 'key',
+ editable: false
}, {
xtype: 'textfield',
name: 'bingKey',
@@ -58,14 +59,16 @@ Ext.define('Traccar.view.ServerDialog', {
fieldLabel: Strings.sharedDistance,
store: 'DistanceUnits',
displayField: 'name',
- valueField: 'key'
+ valueField: 'key',
+ editable: false
}, {
xtype: 'combobox',
name: 'speedUnit',
fieldLabel: Strings.settingsSpeedUnit,
store: 'SpeedUnits',
displayField: 'name',
- valueField: 'key'
+ valueField: 'key',
+ editable: false
}, {
xtype: 'numberfield',
reference: 'latitude',
diff --git a/web/app/view/UserDialog.js b/web/app/view/UserDialog.js
index 43bf067..92e3c5b 100644
--- a/web/app/view/UserDialog.js
+++ b/web/app/view/UserDialog.js
@@ -55,21 +55,24 @@ Ext.define('Traccar.view.UserDialog', {
fieldLabel: Strings.mapLayer,
store: 'MapTypes',
displayField: 'name',
- valueField: 'key'
+ valueField: 'key',
+ editable: false
}, {
xtype: 'combobox',
name: 'distanceUnit',
fieldLabel: Strings.sharedDistance,
store: 'DistanceUnits',
displayField: 'name',
- valueField: 'key'
+ valueField: 'key',
+ editable: false
}, {
xtype: 'combobox',
name: 'speedUnit',
fieldLabel: Strings.settingsSpeedUnit,
store: 'SpeedUnits',
displayField: 'name',
- valueField: 'key'
+ valueField: 'key',
+ editable: false
}, {
xtype: 'numberfield',
reference: 'latitude',