Mercurial > lada > lada-client
view app/view/proben/Edit.js @ 278:d6d74718a102
Clientseitige Überprüfung der Datenfelder hinzugefügt: Nutzung von "numberfields" bei Zahlenwerten, maxLength, min/maxValue
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Wed, 07 Aug 2013 14:57:53 +0200 |
parents | 0d6552bb28ea |
children | 6007d11b81c2 |
line wrap: on
line source
Ext.define('Lada.view.proben.Edit', { extend: 'Ext.window.Window', alias: 'widget.probenedit', title: 'Maske für §3-Proben', // Make size of the dialog dependend of the available space. // TODO: Handle resizing the browser window. width: Ext.getBody().getViewSize().width - 30, height: Ext.getBody().getViewSize().height - 30, autoShow: true, autoScroll: true, modal: true, initComponent: function() { this.buttons = [ { text: 'Speichern', action: 'save', }, { text: 'Abbrechen', scope: this, handler: this.close, } ]; // InitialConfig is the config object passed to the constructor on // creation of this window. We need to pass it throuh to the form as // we need the "modelId" param to load the correct item. var form = Ext.create('Lada.view.proben.EditForm', this.initialConfig); this.items = [form]; this.callParent(); }, });