diff options
author | Abyss777 <abyss@fox5.ru> | 2017-08-18 15:40:39 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-08-18 15:40:39 +0500 |
commit | f26159a40b3b23fbd63de312f121b1fe1bf64bd1 (patch) | |
tree | e11eb5ae16c18feaa24844aae8305de472e140b1 /web/app/controller | |
parent | d1d7d230a0262d9f6ae05f1c4c6718699edb8de3 (diff) | |
download | trackermap-web-f26159a40b3b23fbd63de312f121b1fe1bf64bd1.tar.gz trackermap-web-f26159a40b3b23fbd63de312f121b1fe1bf64bd1.tar.bz2 trackermap-web-f26159a40b3b23fbd63de312f121b1fe1bf64bd1.zip |
- Detach common known attributes
- Rename function
Diffstat (limited to 'web/app/controller')
-rw-r--r-- | web/app/controller/Root.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/web/app/controller/Root.js b/web/app/controller/Root.js index 92620115..1c70dd03 100644 --- a/web/app/controller/Root.js +++ b/web/app/controller/Root.js @@ -113,6 +113,13 @@ Ext.define('Traccar.controller.Root', { Ext.getStore('AttributeAliases').load(); Ext.getStore('ComputedAttributes').load(); this.initReportEventTypesStore(); + + Ext.getStore('ServerAttributes').loadData(Ext.getStore('CommonDeviceAttributes').getData().items, true); + Ext.getStore('ServerAttributes').loadData(Ext.getStore('CommonUserAttributes').getData().items, true); + Ext.getStore('UserAttributes').loadData(Ext.getStore('CommonUserAttributes').getData().items, true); + Ext.getStore('DeviceAttributes').loadData(Ext.getStore('CommonDeviceAttributes').getData().items, true); + Ext.getStore('GroupAttributes').loadData(Ext.getStore('CommonDeviceAttributes').getData().items, true); + Ext.getStore('Devices').load({ scope: this, callback: function () { |