Mercurial > lada > lada-client
view app/view/widgets/Messmethode.js @ 352:5fbcbf330839
Added documenation
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 13 Aug 2013 11:45:14 +0200 |
parents | 852dc338894e |
children | 596501c16560 |
line wrap: on
line source
var mmtStore = Ext.create('Ext.data.Store', { fields: ['mmtId', 'messmethhode'], sorters: [{ property: 'mmtId', }], 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', initComponent: function() { this.callParent(arguments); } });