0

我正在使用 extjs 3。当我第一次打开向导卡时,所有无线电组都正确显示。但是当我关闭向导卡并再次打开时,所有无线电组都没有显示。

xtype: 'radiogroup',
id: 'industry_select_type',
fieldLabel: 'Select By',
columns: 1,
items: [{
    boxLabel: 'None',
    name: 'industry_select_type',
    inputValue: '1', // do not set this field to 0, otherwise the radiogroup will not work properly.
    checked: true,
    listeners: {
        check: function (cb, checked) {
            toggleCheck(Ext.getCmp('indTree').root, false);
        }
    }
}, {
    boxLabel: 'All Industries',
    name: 'industry_select_type',
    inputValue: '2',
    listeners: {
        check: function (cb, checked) {
            if (checked) {
                Ext.getCmp('indTree').hide();
            }
        }
    }
}, {
    boxLabel: 'Specific Industries',
    name: 'industry_select_type',
    inputValue: '3',
    listeners: {
        check: function (cb, checked) {
            if (checked) {
                Ext.getCmp('indTree').show();
            } else {
                Ext.getCmp('indTree').hide();
            }
        }
    }
}]
4

1 回答 1

0

删除 Radiogroup 对象的 ID。

于 2013-04-27T22:14:28.527 回答