Mercurial > lada > lada-client
changeset 1055:65ea1c2a8c98
Updated orte window in messprogramme to new orte model.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Mon, 07 Mar 2016 11:19:49 +0100 |
parents | 7e801af49eeb |
children | 239e0ebb97e0 |
files | app/store/Orte.js app/view/panel/Map.js app/view/widget/Location.js |
diffstat | 3 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/app/store/Orte.js Wed Mar 02 12:59:15 2016 +0100 +++ b/app/store/Orte.js Mon Mar 07 11:19:49 2016 +0100 @@ -13,7 +13,7 @@ extend: 'Ext.data.Store', model: 'Lada.model.Ort', sorters: [{ - property: 'bezeichnung' + property: 'gemId' }], autoLoad: true });
--- a/app/view/panel/Map.js Wed Mar 02 12:59:15 2016 +0100 +++ b/app/view/panel/Map.js Mon Mar 07 11:19:49 2016 +0100 @@ -81,7 +81,7 @@ if (!this.externalOrteStore) { this.locationStore = Ext.data.StoreManager.get('orte'); - this.addLocations(locationStore); + this.addLocations(this.locationStore); } },
--- a/app/view/widget/Location.js Wed Mar 02 12:59:15 2016 +0100 +++ b/app/view/widget/Location.js Mon Mar 07 11:19:49 2016 +0100 @@ -12,7 +12,7 @@ Ext.define('Lada.view.widget.Location', { extend: 'Lada.view.widget.base.ComboBox', alias: 'widget.location', - displayField: 'bezeichnung', + displayField: 'ortId', valueField: 'id', emptyText: 'Wählen Sie einen Ort', // Enable filtering of comboboxes @@ -23,9 +23,9 @@ minChars: 0, initComponent: function() { - this.store = Ext.data.StoreManager.get('locations'); + this.store = Ext.data.StoreManager.get('orte'); if (!this.store) { - this.store = Ext.create('Lada.store.Locations'); + this.store = Ext.create('Lada.store.Orte'); } this.callParent(arguments); }