~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to gis/dhis-gis-geostat/mfbase/ext/source/widgets/form/Label.js

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Ext JS Library 2.2
 
3
 * Copyright(c) 2006-2008, Ext JS, LLC.
 
4
 * licensing@extjs.com
 
5
 * 
 
6
 * http://extjs.com/license
 
7
 */
 
8
 
 
9
/**
 
10
 * @class Ext.form.Label
 
11
 * @extends Ext.BoxComponent
 
12
 * Basic Label field.
 
13
 * @constructor
 
14
 * Creates a new Label
 
15
 * @param {Ext.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
 
16
 * element and its id used as the component id.  If a string is passed, it is assumed to be the id of an existing element
 
17
 * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
 
18
 */
 
19
Ext.form.Label = Ext.extend(Ext.BoxComponent, {
 
20
    /**
 
21
     * @cfg {String} text The plain text to display within the label (defaults to ''). If you need to include HTML 
 
22
     * tags within the label's innerHTML, use the {@link #html} config instead.
 
23
     */
 
24
    /**
 
25
     * @cfg {String} forId The id of the input element to which this label will be bound via the standard 'htmlFor'
 
26
     * attribute. If not specified, the attribute will not be added to the label.
 
27
     */
 
28
    /**
 
29
     * @cfg {String} html An HTML fragment that will be used as the label's innerHTML (defaults to ''). 
 
30
     * Note that if {@link #text} is specified it will take precedence and this value will be ignored.
 
31
     */
 
32
 
 
33
    // private
 
34
    onRender : function(ct, position){
 
35
        if(!this.el){
 
36
            this.el = document.createElement('label');
 
37
            this.el.id = this.getId();
 
38
            this.el.innerHTML = this.text ? Ext.util.Format.htmlEncode(this.text) : (this.html || '');
 
39
            if(this.forId){
 
40
                this.el.setAttribute('htmlFor', this.forId);
 
41
            }
 
42
        }
 
43
        Ext.form.Label.superclass.onRender.call(this, ct, position);
 
44
    },
 
45
    
 
46
    /**
 
47
     * Updates the label's innerHTML with the specified string.
 
48
     * @param {String} text The new label text
 
49
     * @param {Boolean} encode (optional) False to skip HTML-encoding the text when rendering it
 
50
     * to the label (defaults to true which encodes the value). This might be useful if you want to include 
 
51
     * tags in the label's innerHTML rather than rendering them as string literals per the default logic.
 
52
     * @return {Label} this
 
53
     */
 
54
    setText: function(t, encode){
 
55
        this.text = t;
 
56
        if(this.rendered){
 
57
            this.el.dom.innerHTML = encode !== false ? Ext.util.Format.htmlEncode(t) : t;
 
58
        }
 
59
        return this;
 
60
    }
 
61
});
 
62
 
 
63
Ext.reg('label', Ext.form.Label);
 
 
b'\\ No newline at end of file'