Mercurial > lada > lada-client
diff app/view/widgets/Probenart.js @ 121:c05fda928b82
Cleanup part two. Reenabled Proben edit but one use minimum version of the probenedit. Move some stores to the combobox definitons
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Fri, 21 Jun 2013 16:55:23 +0200 |
parents | f9b6de636ad0 |
children | 5fbcbf330839 |
line wrap: on
line diff
--- a/app/view/widgets/Probenart.js Fri Jun 21 16:53:39 2013 +0200 +++ b/app/view/widgets/Probenart.js Fri Jun 21 16:55:23 2013 +0200 @@ -1,9 +1,22 @@ -// Combobox for Umweltbereich +// Combobox for Probenart +var probenartStore = Ext.create('Ext.data.Store', { + fields: ['probenartId', 'probenart'], + proxy: { + type: 'ajax', + api: { + read: 'server/rest/probenart' + }, + reader: { + type: 'json', + root: 'data' + } + } +}); + Ext.define('Lada.view.widgets.Probenart' ,{ extend: 'Ext.form.ComboBox', alias: 'widget.probenart', - store: 'Probenart', - queryMode: 'local', + store: probenartStore, displayField:'probenart', valueField: 'probenartId', emptyText:'Wählen Sie eine Probenart',