I am having problems with radio buttons in ext 2.2. Basically they show up, but without the actual radio button. Only a label is displayed.
I tried creating a new default Radio button in ext 2.0.2 and a radio button happily showed up. When I changed my ext version to 2.2, I don't see anything. So, I do a little configuration so I can see something and the label is displayed, but no radio button.
Is this a known issue and is there a patch or workaround for it?
Code:
new Ext.FormPanel(Ext.apply({
id: "manageLangStrings",
border: false,
autoHeight: true,
autoWidth: true,
labelWidth: 150,
bodyStyle: "padding: 5px",
formID: "manageLangStringsForm",
title: "Manage Language Strings",
items: [
new Ext.form.Radio({
name: "radioGrp",
fieldLabel: "Some Radio Button",
checked:true
}),
new Ext.form.Radio({
name: "radioGrp",
fieldLabel: "Another Radio Button here"
})
]
})
);
};