﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
3066	NewForms RadioSelect choices problem	Derek Hoy <django@…>	Adrian Holovaty	"Using a RadioSelect widget in NewForms needs choices to be put in Field and the widget definitions
(in SVN r4105)

Examples:

{{{
radio_choice = ChoiceField(
    widget=RadioSelect(choices=(('1', '1'), ('2', '2'),('3', '3'), ('4', '4'))))

radio_choice = ChoiceField(
    choices=(('1', '1'), ('2', '2')), 
    widget=RadioSelect(choices=(('3', '3'), ('4', '4'))))

radio_choice = ChoiceField(
    choices=(('1', '1'), ('2', '2'),('3', '3'), ('4', '4')), 
    widget=RadioSelect(choices=(('1', '1'), ('2', '2'),('3', '3'), ('4', '4'))))
}}}

Example 1, choices show in form, but not valid when selected.
Ex 2, choices 3,4 appear, but not valid choices.
Ex 3, all appear and are valid choices.
"	defect	closed	Core (Other)	dev	normal	invalid			Unreviewed	0	0	0	0	0	0
