Mercurial > lada > lada-client
view app/view/widgets/Messmethode.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 mmtStore = Ext.create('Ext.data.Store', { fields: ['mmtId', 'messmethhode'], sorters: [{ property: 'mmtId', }], autoLoad: true, proxy: { type: 'ajax', api: { read: 'server/rest/messmethode' }, reader: { type: 'json', root: 'data' } } }); /** * Combobox for Messmethode */ Ext.define('Lada.view.widgets.Messmethode' ,{ tpl: '<tpl for="."><div class="x-combo-list-item x-boundlist-item" >{mmtId} - {messmethhode}</div></tpl>', extend: 'Ext.form.ComboBox', alias: 'widget.messmethode', store: mmtStore, displayField:'messmethhode', valueField: 'mmtId', emptyText:'Wählen Sie eine Messmethode', // Enable filtering of comboboxes autoSelect: false, queryMode: 'local', triggerAction : 'all', typeAhead: true, minChars: 0, initComponent: function() { this.callParent(arguments); } });