Есть простой класс RadioGroup.
TestRadioGroup = Ext.extend ( Ext.form.RadioGroup, {
fieldLabel: 'Test',
listeners: {
change: function(el,val) {
alert(val);
}
},
constructor: function(config) {
this.items = [];
this.items.push ( {boxLabel: 'Test1', name: 'test', inputValue: 2 } );
this.items.push ( {boxLabel: 'Test2', name: 'test', inputValue: 1 } );
this.items.push ( {boxLabel: 'Test',name: 'test', inputValue: 0 } );
current_value = Cookie.get('test_current_value');
TestRadioGroup.superclass.constructor.call(this);
}
});
Он создает 3 радиобаттона. Хочется чтобы при создании этих 3 радоибаттонов сразу выбирался один ( который берется из кук т е current_value ). Вопрос: как это сделать ? По идее fireEvent ? Но как его тут применить ?