From a6765559b9388cea4ebc056cc207d7fc05206065 Mon Sep 17 00:00:00 2001 From: Abyss777 Date: Wed, 10 May 2017 12:14:44 +0500 Subject: Implement computed attributes --- web/app/view/edit/GroupsController.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'web/app/view/edit/GroupsController.js') diff --git a/web/app/view/edit/GroupsController.js b/web/app/view/edit/GroupsController.js index 36154b4..602bb09 100644 --- a/web/app/view/edit/GroupsController.js +++ b/web/app/view/edit/GroupsController.js @@ -22,6 +22,7 @@ Ext.define('Traccar.view.edit.GroupsController', { requires: [ 'Traccar.view.dialog.Group', 'Traccar.view.permissions.GroupGeofences', + 'Traccar.view.permissions.GroupAttributes', 'Traccar.view.BaseWindow', 'Traccar.model.Group' ], @@ -47,9 +48,27 @@ Ext.define('Traccar.view.edit.GroupsController', { }).show(); }, + onAttributesClick: function () { + var admin, group; + admin = Traccar.app.getUser().get('admin'); + group = this.getView().getSelectionModel().getSelection()[0]; + Ext.create('Traccar.view.BaseWindow', { + title: Strings.sharedComputedAttributes, + items: { + xtype: 'groupAttributesView', + baseObjectName: 'groupId', + linkObjectName: 'attributeId', + storeName: admin ? 'AllComputedAttributes' : 'ComputedAttributes', + urlApi: 'api/groups/attributes', + baseObject: group.getId() + } + }).show(); + }, + onSelectionChange: function (selected) { var disabled = selected.length > 0; this.lookupReference('toolbarGeofencesButton').setDisabled(disabled); + this.lookupReference('toolbarAttributesButton').setDisabled(disabled); this.callParent(arguments); } }); -- cgit v1.2.3