ExtJs 4.2: Radio Button not rendering properly(Button is missing but label is visible)
问题 I am trying to implement a simple Radio Button in my application(Extjs 4.2). But the Radio buttons are not visible. This is my code for generating radio Button(following code is inside Items array of panel): { xtype:'form', header: false, items:[{ xtype: 'radiogroup', fieldLabel: 'Choose', items: [ { boxLabel: 'Option 1', name: 'rb', inputValue: '1' ,inputValue: 'Checked'}, { boxLabel: 'Option 2', name: 'rb', inputValue: '2' } ] }] } This is how it displays it. Can someone point out my