aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-12-19 12:19:33 +0500
committerAbyss777 <abyss@fox5.ru>2017-12-19 12:19:33 +0500
commit86fc00eefa298670b47b4ee15f5d3237b0634efd (patch)
tree3d5e1b63c1fe379b8e578aff53e57244d716dda6
parent18cd6ba4d5f3329db6bb9e4debfddfdfc49e76c2 (diff)
downloadetbsa-traccar-web-86fc00eefa298670b47b4ee15f5d3237b0634efd.tar.gz
etbsa-traccar-web-86fc00eefa298670b47b4ee15f5d3237b0634efd.tar.bz2
etbsa-traccar-web-86fc00eefa298670b47b4ee15f5d3237b0634efd.zip
Rename Custom to ClearableComboBox
-rw-r--r--web/app/view/ClearableComboBox.js (renamed from web/app/view/CustomComboBox.js)4
-rw-r--r--web/app/view/dialog/Device.js4
-rw-r--r--web/app/view/dialog/Geofence.js4
-rw-r--r--web/app/view/dialog/Group.js4
-rw-r--r--web/app/view/dialog/Server.js6
-rw-r--r--web/app/view/dialog/User.js6
6 files changed, 14 insertions, 14 deletions
diff --git a/web/app/view/CustomComboBox.js b/web/app/view/ClearableComboBox.js
index e3e4d81..cf811d1 100644
--- a/web/app/view/CustomComboBox.js
+++ b/web/app/view/ClearableComboBox.js
@@ -15,9 +15,9 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-Ext.define('Traccar.view.CustomComboBox', {
+Ext.define('Traccar.view.ClearableComboBox', {
extend: 'Ext.form.field.ComboBox',
- xtype: 'customComboBox',
+ xtype: 'clearableComboBox',
editable: false,
triggers: {
diff --git a/web/app/view/dialog/Device.js b/web/app/view/dialog/Device.js
index 12e7fb1..c024bf3 100644
--- a/web/app/view/dialog/Device.js
+++ b/web/app/view/dialog/Device.js
@@ -19,7 +19,7 @@ Ext.define('Traccar.view.dialog.Device', {
extend: 'Traccar.view.dialog.BaseEdit',
requires: [
- 'Traccar.view.CustomComboBox'
+ 'Traccar.view.ClearableComboBox'
],
title: Strings.sharedDevice,
@@ -46,7 +46,7 @@ Ext.define('Traccar.view.dialog.Device', {
collapsible: true,
collapsed: true,
items: [{
- xtype: 'customComboBox',
+ xtype: 'clearableComboBox',
name: 'groupId',
fieldLabel: Strings.groupParent,
store: 'Groups',
diff --git a/web/app/view/dialog/Geofence.js b/web/app/view/dialog/Geofence.js
index 7a425ba..65c32c0 100644
--- a/web/app/view/dialog/Geofence.js
+++ b/web/app/view/dialog/Geofence.js
@@ -19,7 +19,7 @@ Ext.define('Traccar.view.dialog.Geofence', {
extend: 'Traccar.view.dialog.BaseEdit',
requires: [
- 'Traccar.view.CustomComboBox',
+ 'Traccar.view.ClearableComboBox',
'Traccar.view.dialog.GeofenceController'
],
@@ -46,7 +46,7 @@ Ext.define('Traccar.view.dialog.Geofence', {
name: 'description',
fieldLabel: Strings.sharedDescription
}, {
- xtype: 'customComboBox',
+ xtype: 'clearableComboBox',
reference: 'calendarCombo',
name: 'calendarId',
store: 'Calendars',
diff --git a/web/app/view/dialog/Group.js b/web/app/view/dialog/Group.js
index 85c548a..8ce6282 100644
--- a/web/app/view/dialog/Group.js
+++ b/web/app/view/dialog/Group.js
@@ -19,7 +19,7 @@ Ext.define('Traccar.view.dialog.Group', {
extend: 'Traccar.view.dialog.BaseEdit',
requires: [
- 'Traccar.view.CustomComboBox'
+ 'Traccar.view.ClearableComboBox'
],
title: Strings.groupDialog,
@@ -41,7 +41,7 @@ Ext.define('Traccar.view.dialog.Group', {
collapsible: true,
collapsed: true,
items: [{
- xtype: 'customComboBox',
+ xtype: 'clearableComboBox',
name: 'groupId',
store: 'Groups',
queryMode: 'local',
diff --git a/web/app/view/dialog/Server.js b/web/app/view/dialog/Server.js
index fe4afb2..a39408d 100644
--- a/web/app/view/dialog/Server.js
+++ b/web/app/view/dialog/Server.js
@@ -19,7 +19,7 @@ Ext.define('Traccar.view.dialog.Server', {
extend: 'Traccar.view.dialog.BaseEdit',
requires: [
- 'Traccar.view.CustomComboBox',
+ 'Traccar.view.ClearableComboBox',
'Traccar.view.dialog.MapPickerController'
],
@@ -32,7 +32,7 @@ Ext.define('Traccar.view.dialog.Server', {
xtype: 'fieldset',
title: Strings.sharedPreferences,
items: [{
- xtype: 'customComboBox',
+ xtype: 'clearableComboBox',
name: 'map',
fieldLabel: Strings.mapLayer,
store: 'MapTypes',
@@ -76,7 +76,7 @@ Ext.define('Traccar.view.dialog.Server', {
name: 'forceSettings',
fieldLabel: Strings.serverForceSettings
}, {
- xtype: 'customComboBox',
+ xtype: 'clearableComboBox',
name: 'coordinateFormat',
fieldLabel: Strings.settingsCoordinateFormat,
store: 'CoordinateFormats',
diff --git a/web/app/view/dialog/User.js b/web/app/view/dialog/User.js
index ccafc5e..be27a51 100644
--- a/web/app/view/dialog/User.js
+++ b/web/app/view/dialog/User.js
@@ -19,7 +19,7 @@ Ext.define('Traccar.view.dialog.User', {
extend: 'Traccar.view.dialog.BaseEdit',
requires: [
- 'Traccar.view.CustomComboBox',
+ 'Traccar.view.ClearableComboBox',
'Traccar.view.dialog.UserController'
],
@@ -57,7 +57,7 @@ Ext.define('Traccar.view.dialog.User', {
name: 'phone',
fieldLabel: Strings.sharedPhone
}, {
- xtype: 'customComboBox',
+ xtype: 'clearableComboBox',
name: 'map',
fieldLabel: Strings.mapLayer,
store: 'MapTypes',
@@ -87,7 +87,7 @@ Ext.define('Traccar.view.dialog.User', {
name: 'twelveHourFormat',
fieldLabel: Strings.settingsTwelveHourFormat
}, {
- xtype: 'customComboBox',
+ xtype: 'clearableComboBox',
name: 'coordinateFormat',
fieldLabel: Strings.settingsCoordinateFormat,
store: 'CoordinateFormats',