Mercurial > lada > lada-client
view app/view/widgets/Verwaltungseinheit.js @ 428:651ee49ff3c2
Added listener to load the recored of the set Verwaltungseinheit.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Fri, 08 Nov 2013 12:36:29 +0100 |
parents | a4eb98a6ea20 |
children | debfcc7713e3 |
line wrap: on
line source
/** * Combobox for Verwaltungseinheit */ Ext.define('Lada.view.widgets.Verwaltungseinheit' ,{ extend: 'Ext.form.ComboBox', alias: 'widget.verwaltungseinheiten', store: 'Verwaltungseinheiten', displayField: 'bezeichnung', valueField: 'gemId', emptyText:'Wählen Sie eine Verwaltungseinheit', hideTrigger: true, // Enable filtering of comboboxes autoSelect: false, queryMode: 'remote', triggerAction : 'type', typeAhead: true, minChars: 2, initComponent: function() { this.callParent(arguments); }, // This listener is used to load currently "selected" verwaltungseinheit. // This is needed as without having this record the field would only // display the raw value (id) of the verwaltungseinheit. listeners: { render: function(combo, eOpts) { combo.store.load({ id: this.getValue() }); } } });