Mercurial > lada > lada-client
view app/view/widgets/Mst.js @ 357:94884cd8f8c0
Added logic to upload a file to the server.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 13 Aug 2013 16:21:08 +0200 |
parents | 596501c16560 |
children | cdef828f8049 |
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', // Enable filtering of comboboxes autoSelect: false, queryMode: 'local', triggerAction : 'all', typeAhead: true, minChars: 0, initComponent: function() { this.callParent(arguments); } });