Mercurial > lada > lada-client
changeset 446:b3e806045a5a
New view to create ort details.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Thu, 05 Dec 2013 09:56:50 +0100 |
parents | a122424f2f0f |
children | 12231f31c112 |
files | app/view/orte/CreateOrt.js |
diffstat | 1 files changed, 66 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/view/orte/CreateOrt.js Thu Dec 05 09:56:50 2013 +0100 @@ -0,0 +1,66 @@ +/** + * + */ +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' + }, + { + 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); + } +}); +