Mercurial > lada > lada-client
view app/view/orte/CreateOrt.js @ 460:4e20552b4a3d
Added tag 1.0 for changeset 487ae31f4c5d
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Wed, 08 Jan 2014 16:49:16 +0100 |
parents | e228fecd1577 |
children | debfcc7713e3 |
line wrap: on
line source
/** * */ Ext.define('Lada.view.orte.CreateOrt', { extend: 'Ext.window.Window', alias: 'widget.createortdetail', title: 'Neuer Ort', /** * @private * Initialize the view. */ initComponent: function() { var me = this; var form = Ext.create('Ext.form.Panel', { items: [{ xtype: 'textfield', maxLength: 100, name: 'ort_beschreibung', fieldLabel: 'Beschreibung' }, { xtype: 'staat', name: 'ort_staatId', fieldLabel: 'Staat' }, { xtype: 'verwaltungseinheiten', name: 'ort_gemId', fieldLabel: 'Gemeinde', listeners: { 'select': { scope: me, fn: function(field, newValue, oldValue) { var lon = field.up('window').down( 'numberfield[name=ort_longitude]'); var lat = field.up('window').down( 'numberfield[name=ort_latitude]'); lon.setValue(newValue[0].data.longitude); lat.setValue(newValue[0].data.latitude); } } } }, { xtype: 'numberfield', name: 'ort_latitude', fieldLabel: 'Lat' }, { xtype: 'numberfield', name: 'ort_longitude', fieldLabel: 'Lon' }, { xtype: 'numberfield', name: 'ort_hoeheLand', fieldLabel: 'Höhe' }] }); me.items = [form]; this.buttons = [ { text: 'Speichern', scope: form, action: 'save' }, { text: 'Abbrechen', scope: this, handler: this.close } ]; this.callParent(arguments); } });