diff options
author | Abyss777 <abyss@fox5.ru> | 2016-06-18 07:59:43 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-06-18 07:59:43 +0500 |
commit | 4109447d0adc778b246543b77672c280d58da8bf (patch) | |
tree | 08ee98636cec128587bbf5f25654c5e3534dfcd9 /web/app/view/GroupsController.js | |
parent | b3b0cd9d6f2d26cef2e64ef38e23203f1f3fa51a (diff) | |
download | trackermap-server-4109447d0adc778b246543b77672c280d58da8bf.tar.gz trackermap-server-4109447d0adc778b246543b77672c280d58da8bf.tar.bz2 trackermap-server-4109447d0adc778b246543b77672c280d58da8bf.zip |
- Update Geofences API and Manager a bit
- Show geofence name in event toasts
- Link/Unlink geofences to users, devices and groups
Diffstat (limited to 'web/app/view/GroupsController.js')
-rw-r--r-- | web/app/view/GroupsController.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/web/app/view/GroupsController.js b/web/app/view/GroupsController.js index 6cc568ea2..396a28e7e 100644 --- a/web/app/view/GroupsController.js +++ b/web/app/view/GroupsController.js @@ -18,6 +18,10 @@ Ext.define('Traccar.view.GroupsController', { extend: 'Ext.app.ViewController', alias: 'controller.groups', + requires: [ + 'Traccar.view.GroupGeofences' + ], + onAddClick: function () { var group, dialog; group = Ext.create('Traccar.model.Group'); @@ -55,9 +59,21 @@ Ext.define('Traccar.view.GroupsController', { }); }, + onGeofencesClick: function () { + group = this.getView().getSelectionModel().getSelection()[0]; + Ext.create('Traccar.view.BaseWindow', { + title: Strings.settingsGeofences, + items: { + xtype: 'groupGeofencesView', + group: group + } + }).show(); + }, + onSelectionChange: function (selected) { var disabled = selected.length > 0; this.lookupReference('toolbarEditButton').setDisabled(disabled); this.lookupReference('toolbarRemoveButton').setDisabled(disabled); + this.lookupReference('toolbarGeofencesButton').setDisabled(disabled); } }); |