Mercurial > lada > lada-client
view app/view/widgets/Mst.js @ 127:f5864914ebb3
Commented out pzsId in Zusatzwert model.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 25 Jun 2013 11:26:21 +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); } });