Mercurial > lada > lada-client
view app/view/widgets/Mst.js @ 396:a7e9664091f4
Added tag 0.4 for changeset bcc7546c6366
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Fri, 30 Aug 2013 13:05:16 +0200 |
parents | cdef828f8049 |
children | f9bb1ecf6462 |
line wrap: on
line source
var mstStore = Ext.create('Ext.data.Store', { fields: ['mstId', 'messStelle'], sorters: [{ property: 'messStelle', }], autoLoad: true, 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', // Enable filtering of comboboxes autoSelect: false, queryMode: 'local', triggerAction : 'all', typeAhead: true, minChars: 0, initComponent: function() { this.callParent(arguments); } });