Mercurial > lada > lada-client
view app/view/widgets/Mst.js @ 353:b8bd8d9a93ab
Added documentation
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 13 Aug 2013 11:56:25 +0200 |
parents | 5fbcbf330839 |
children | 596501c16560 |
line wrap: on
line source
var mstStore = Ext.create('Ext.data.Store', { fields: ['mstId', 'messStelle'], sorters: [{ property: 'messStelle', }], proxy: { type: 'ajax', api: { read: 'server/rest/mst' }, reader: { type: 'json', root: 'data' } } }); /** * Combobox for Messstelle */ Ext.define('Lada.view.widgets.Mst' ,{ extend: 'Ext.form.ComboBox', alias: 'widget.mst', store: mstStore, displayField:'messStelle', valueField: 'mstId', typeAhead: true, emptyText:'Wählen Sie eine Messstelle', initComponent: function() { this.callParent(arguments); } });