summaryrefslogtreecommitdiffstats
path: root/deluge/ui/web/js/extjs/ext-extensions/form/RadioGroupFix.js
blob: 416c09808f56b74b1a6263e55db952ccf6773242 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**
 * Ext.ux.form.RadioGroup.js
 *
 * Copyright (c) Damien Churchill 2009-2010 <damoxc@gmail.com>
 *
 * This file is part of Deluge and is licensed under GNU General Public License 3.0, or later, with
 * the additional special exception to link portions of this program with the OpenSSL library.
 * See LICENSE for more details.
 */

// Allow radiogroups to be treated as a single form element.
Ext.override(Ext.form.RadioGroup, {
    afterRender: function () {
        this.items.each(function (i) {
            this.relayEvents(i, ['check']);
        }, this);
        if (this.lazyValue) {
            this.setValue(this.value);
            delete this.value;
            delete this.lazyValue;
        }
        Ext.form.RadioGroup.superclass.afterRender.call(this);
    },

    getName: function () {
        return this.items.first().getName();
    },

    getValue: function () {
        return this.items.first().getGroupValue();
    },

    setValue: function (v) {
        if (!this.items.each) {
            this.value = v;
            this.lazyValue = true;
            return;
        }
        this.items.each(function (item) {
            if (item.rendered) {
                var checked = item.el.getValue() == String(v);
                item.el.dom.checked = checked;
                item.el.dom.defaultChecked = checked;
                item.wrap[checked ? 'addClass' : 'removeClass'](
                    item.checkedCls
                );
            }
        });
    },
});