diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-06-25 20:23:02 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-06-25 20:23:02 +1200 |
commit | 67f46c80d3b5e34440a2644f52b81dddfbaba5fa (patch) | |
tree | d56a9eba651669a7f3a61848af20d1c678449b6b /web/app/view/GeofenceDialog.js | |
parent | d7080b5f3f6cd69930b213f22316014ba841b73a (diff) | |
download | trackermap-server-67f46c80d3b5e34440a2644f52b81dddfbaba5fa.tar.gz trackermap-server-67f46c80d3b5e34440a2644f52b81dddfbaba5fa.tar.bz2 trackermap-server-67f46c80d3b5e34440a2644f52b81dddfbaba5fa.zip |
Add window and dialog for geofences
Diffstat (limited to 'web/app/view/GeofenceDialog.js')
-rw-r--r-- | web/app/view/GeofenceDialog.js | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/web/app/view/GeofenceDialog.js b/web/app/view/GeofenceDialog.js new file mode 100644 index 000000000..a3100a797 --- /dev/null +++ b/web/app/view/GeofenceDialog.js @@ -0,0 +1,39 @@ +/* + * Copyright 2016 Anton Tananaev (anton.tananaev@gmail.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Ext.define('Traccar.view.GeofenceDialog', { + extend: 'Traccar.view.BaseEditDialog', + + requires: [ + 'Traccar.view.BaseEditDialogController' + ], + + controller: 'baseEditDialog', + title: Strings.sharedGeofence, + + items: { + xtype: 'form', + items: [{ + xtype: 'textfield', + name: 'name', + fieldLabel: Strings.sharedName + }, { + xtype: 'textfield', + name: 'description', + fieldLabel: Strings.sharedDescription + }] + } +}); |