view app/view/widget/base/FieldSet.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 d47ee7439f44
children 1e1534482bfd
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: '',

    showWarningOrError: function(warning, warningText, error, errorText) {
        var ndx = 0;
        if (this.collapsible === true) {
            ndx = 1;
        }
        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;
        }
    }
});

http://lada.wald.intevation.org