Mercurial > lada > lada-client
view app/view/messungen/Edit.js @ 258:62e92e470a1e
Fixed Issue44: Show locked or unlocked icon in the first column of the
probenlist depending on the readonly flag.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Thu, 25 Jul 2013 11:01:52 +0200 |
parents | edb2b636319f |
children | 11f8a2c1b610 |
line wrap: on
line source
Ext.define('Lada.view.messungen.Edit', { extend: 'Ext.window.Window', alias: 'widget.messungenedit', title: 'Maske für Messungen', width: Ext.getBody().getViewSize().width - 30, height: Ext.getBody().getViewSize().height - 30, autoShow: true, autoScroll: true, modal: true, requires: [ 'Lada.view.messungen.EditForm' ], initComponent: function() { var form = Ext.create('Lada.view.messungen.EditForm', this.initialConfig); this.items = [form]; this.buttons = [ { text: 'Speichern', scope: form, action: 'save' } ]; this.callParent(); } });