I may be missing something, but how do I programmatically check a radiobutton using ExtJS (v 3)?
The following doesn't seem to always work
var radio = Ext.get("myradiobutton");
radio.set("checked,"");
The radio is sometimes checked, sometimes not...
radio.is(":checked") sometimes return true, sometimes false
Thanks