我正在使用 FormPanel 中的 xtype 在 extJS 4 中创建一个 radioGroup。我试图在检查收音机后立即启用/禁用文本字段。
{
xtype: 'radiogroup',
fieldLabel: 'Enable / Disable ',
columns: 2,
vertical: true,
items: [
{boxLabel: 'Enable', name: 'formtype', inputValue: '1'},
{boxLabel: 'Disable', name: 'formtype', inputValue:'2',checked:true},
]
}
我很困惑在哪里添加检查/单击事件的侦听器。提前致谢。