From 77bdf87d34587d0c6a156816f71fc0874bc7f3dc Mon Sep 17 00:00:00 2001 From: Abyss777 Date: Fri, 8 Jul 2016 15:48:10 +0500 Subject: Pass whole record to attribute editor not to lose "dirtyness" --- web/app/view/AttributesController.js | 15 +++++++++------ web/app/view/UserDialogController.js | 2 +- 2 files changed, 10 insertions(+), 7 deletions(-) (limited to 'web') diff --git a/web/app/view/AttributesController.js b/web/app/view/AttributesController.js index 90dc334b1..663b6eae3 100644 --- a/web/app/view/AttributesController.js +++ b/web/app/view/AttributesController.js @@ -27,27 +27,30 @@ Ext.define('Traccar.view.AttributesController', { var store, propertyName, i = 0; store = Ext.create('Traccar.store.Attributes'); store.setProxy(Ext.create('Ext.data.proxy.Memory')); - for (propertyName in this.getView().attributes) { + for (propertyName in this.getView().record.get('attributes')) { store.add(Ext.create('Traccar.model.Attribute', { priority: i++, name: propertyName, - value:this.getView().attributes[propertyName] + value:this.getView().record.get('attributes')[propertyName] })); } store.addListener('add', function (store , records , index , eOpts) { for (var i = 0; i < records.length; i++) { - this.getView().attributes[records[i].get('name')] = records[i].get('value'); + this.getView().record.get('attributes')[records[i].get('name')] = records[i].get('value'); + this.getView().record.dirty = true; } }, this); store.addListener('update', function (store, record, operation , modifiedFieldNames , details , eOpts) { if (operation === Ext.data.Model.EDIT) { - this.getView().attributes[record.get('name')] = record.get('value'); + this.getView().record.get('attributes')[record.get('name')] = record.get('value'); + this.getView().record.dirty = true; } }, this); store.addListener('remove', function (store , records , index , isMove , eOpts) { - delete this.getView().attributes[records[index].get('name')]; + delete this.getView().record.get('attributes')[records[index].get('name')]; + this.getView().record.dirty = true; }, this); - + this.getView().setStore(store); }, diff --git a/web/app/view/UserDialogController.js b/web/app/view/UserDialogController.js index db495b8ff..49dfd9d70 100644 --- a/web/app/view/UserDialogController.js +++ b/web/app/view/UserDialogController.js @@ -59,7 +59,7 @@ Ext.define('Traccar.view.UserDialogController', { modal: false, items: { xtype: 'attributesView', - attributes: record.get('attributes') + record: record } }).show(); } -- cgit v1.2.3