向导中的单选按钮

时间:2013-03-07 15:25:46

标签: extjs extjs3 radio-group

我正在使用extjs 3.当我第一次打开一个wiz卡时,所有的无线电组都正常显示。但当我关闭巫师卡并再次打开时,所有无线电组都没有显示。

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();
            }
        }
    }
}]

1 个答案:

答案 0 :(得分:0)

删除Radiogroup对象的ID。