Mercurial > lada > lada-client
view app/view/widgets/Datenbasis.js @ 448:bd2b26c249e2
Use 'load', not 'reload' to fill the proben store if its empty.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Thu, 05 Dec 2013 11:18:43 +0100 |
parents | f9bb1ecf6462 |
children | debfcc7713e3 |
line wrap: on
line source
var datenbasisStore = Ext.create('Ext.data.Store', { fields: ['datenbasisId', 'beschreibung', 'datenbasis'], sorters: [{ property: 'datenbasis' }], autoLoad: true, proxy: { type: 'ajax', api: { read: 'server/rest/datenbasis' }, reader: { type: 'json', root: 'data' } } }); /** * Combobox for Datenbasis */ Ext.define('Lada.view.widgets.Datenbasis' ,{ extend: 'Ext.form.ComboBox', alias: 'widget.datenbasis', store: datenbasisStore, displayField:'datenbasis', valueField: 'datenbasisId', emptyText:'Wählen Sie eine Datenbasis', // Enable filtering of comboboxes autoSelect: false, queryMode: 'local', triggerAction : 'all', typeAhead: true, minChars: 0, initComponent: function() { this.callParent(arguments); } });