Mercurial > lada > lada-client
view app/view/widgets/Mst.js @ 416:0814c50caa81
Set querymode to remote to only load a subset of items of the
Verwaltungseinheit store.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Wed, 09 Oct 2013 10:13:32 +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); } });