Mercurial > lada > lada-client
diff app/view/widget/Location.js @ 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 | d47ee7439f44 |
children |
line wrap: on
line diff
--- 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); }