Mercurial > lada > lada-client
view app/view/widget/base/FieldSet.js @ 633:1e1534482bfd
Allow multiple warning- or error-messages in a fieldset.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Mon, 16 Mar 2015 17:23:27 +0100 |
parents | fead63bb5fb4 |
children | f124d24c8ade |
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.FieldSet', { extend: 'Ext.form.FieldSet', alias: 'widget.fset', plainTitle: '', origColor: '', errorText: '', warningText: '', showWarningOrError: function(warning, warningText, error, errorText) { var ndx = 0; if (this.collapsible === true) { ndx = 1; } if (this.errorText && this.errorText !== '') { this.errorText += '\n'; } this.errorText += errorText; if (this.warningText && this.warningText !== '') { this.warningText += '\n'; } this.warningText += warningText; this.plainTitle = this.getEl().dom.firstChild .firstChild.firstChild .children[ndx].innerHTML; this.origColor = this.getEl().dom.style['border-color']; if (error) { this.getEl().dom.style['border-color'] = '#FF0000'; this.getEl().dom.firstChild.firstChild.firstChild .children[ndx].innerHTML = '<img src="resources/img/emblem-important.png" width="13" height="13" /> ' + this.plainTitle; if (errorText) { Ext.create('Ext.tip.ToolTip', { target: this.getEl().dom.firstChild.firstChild.firstChild.children[ndx], html: errorText }); } return; } if (warning) { this.getEl().dom.style['border-color'] = '#FFE25D'; this.getEl().dom.firstChild.firstChild.firstChild .children[ndx].innerHTML = '<img src="resources/img/dialog-warning.png" width="13" height="13" /> ' + this.plainTitle; if (warningText) { Ext.create('Ext.tip.ToolTip', { target: this.getEl().dom.firstChild.firstChild.firstChild.children[ndx], html: warningText }); } return; } }, clearMessages: function() { var ndx = 0; if (this.collapsible === true) { ndx = 1; } if (this.plainTitle !== '') { this.getEl().dom.firstChild .firstChild.firstChild .children[ndx].innerHTML = this.plainTitle; this.getEl().dom.style['border-color'] = this.origColor; } } });