Mercurial > lada > lada-client
view app/view/widgets/Mst.js @ 198:808c24773713
Added new widget to list the available Statuswerte.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Mon, 08 Jul 2013 16:14:15 +0200 |
parents | 19eab475bbe5 |
children | 70a1b5962930 |
line wrap: on
line source
// Combobox for Messtelle var mstStore = Ext.create('Ext.data.Store', { fields: ['mstId'], proxy: { type: 'ajax', api: { read: 'server/rest/mst' }, reader: { type: 'json', root: 'data' } } }); Ext.define('Lada.view.widgets.Mst' ,{ extend: 'Ext.form.ComboBox', alias: 'widget.mst', store: mstStore, displayField:'mstId', valueField: 'mstId', typeAhead: true, emptyText:'Wählen Sie eine Messstelle', initComponent: function() { this.callParent(arguments); } });