Mercurial > lada > lada-client
view app/view/widget/base/TextField.js @ 632:fead63bb5fb4
Updated images for errors and warnings.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Mon, 16 Mar 2015 17:09:15 +0100 |
parents | 41d480b69436 |
children | 291ac2e2bcf5 |
line wrap: on
line source
/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz * Software engineering by Intevation GmbH * * This file is Free Software under the GNU GPL (v>=3) * and comes with ABSOLUTELY NO WARRANTY! Check out * the documentation coming with IMIS-Labordaten-Application for details. */ Ext.define('Lada.view.widget.base.TextField', { extend: 'Ext.panel.Panel', alias: 'widget.tfield', layout: 'hbox', border: 0, margin: '0, 0, 5, 0', initComponent: function() { this.items = [{ xtype: 'textfield', flex: 1, name: this.name, msgTarget: 'none', maxLength: this.maxLength, fieldLabel: this.fieldLabel, labelWidth: this.labelWidth, listeners: this.listeners }, { xtype: 'image', name: 'warnImg', src: 'resources/img/dialog-warning.png', width: 14, height: 14, hidden: true }, { xtype: 'image', name: 'errorImg', src: 'resources/img/emblem-important.png', width: 14, height: 14, hidden: true }]; this.callParent(arguments); }, showWarnings: function(warnings) { var img = this.down('image[name=warnImg]'); Ext.create('Ext.tip.ToolTip', { target: img.getEl(), html: warnings }); img.show(); this.down('textfield').invalidCls = 'x-lada-warning'; this.down('textfield').markInvalid(''); var fieldset = this.up('fieldset[collapsible=true]'); if (fieldset) { fieldset.showWarnings(warnings); } }, showErrors: function(errors) { var img = this.down('image[name=errorImg]'); var warnImg = this.down('image[name=warnImg]'); warnImg.hide(); Ext.create('Ext.tip.ToolTip', { target: img.getEl(), html: errors }); this.down('textfield').invalidCls = 'x-lada-error'; this.down('textfield').markInvalid(''); img.show(); var fieldset = this.up('fieldset[collapsible=true]'); if (fieldset) { fieldset.showErrors(); } }, clearWarningOrError: function() { this.down('image[name=errorImg]').hide(); this.down('image[name=warnImg]').hide(); }, setReadOnly: function(value) { this.down('textfield').setReadOnly(value); } });