I'm not even sure how to search for this, so hopefully this hasn't already been answered a hundred times.
Basically, I have a radio group on my form with three options: Show Completed Exams, Show Incomplete Exams, or Show All Exams.
{
name: 'ShowComplete',
fieldLabel: 'Show',
allowBlank: true,
columns: 1,
items: [
{
name: 'ShowComplete',
boxLabel: 'Completed Exams',
inputValue: '1'
},
{
name: 'ShowComplete',
boxLabel: 'Incomplete Exams',
inputValue: '0'
},
{
name: 'ShowComplete',
boxLabel: 'All',
inputValue: '-1'
}
],
xtype: 'radiogroup'
}
When I load the page, I have a nice looking control.
http://dl.dropbox.com/u/298258/extJSRadioGroup.png
However, the only one I can select is Incomplete Exams.
Is there something I am missing? I'm sure it's something simple.
Thanks!