id	summary	reporter	owner	description	type	status	priority	component	severity	resolution	keywords	cc	release
10470	Can't move radio buttons	ChrisNelson	thomasd	The DOM structure of radio buttons is quite different from that of other field types.  There is no "label for" the input to key on and no unique input field with the "field-<fieldname>" as the ID.\r\n\r\nIt looks like:\r\n\r\n{{{\r\n<th class="col1" ...> Confidence: </th>\r\n<td class="col1" ...>\r\n  <label><input class="" type="radio" value="Low" name="field_confidence">Low</label>\r\n  <label><input class="" type="radio" value="Medium" name="field_confidence">Medium</label>\r\n  <label><input class="" type="radio" value="High" name="field_confidence">High</label>\r\n</td>\r\n}}}\r\n\r\nwhereas the same choices as a select look like:\r\n\r\n{{{\r\n<th class="col2" ...>\r\n  <label for="field-confidence">Confidence:</label>\r\n</th>\r\n<td class="col2" ...>\r\n  <select id="field-confidence" class="" onmouseover="show_tip(this.id)" name="field_confidence" title="">\r\n    <option value="Low">Low</option>\r\n    <option value="Medium">Medium</option>\r\n    <option value="High">High</option>\r\n    <option value="Very high">Very high</option>\r\n  </select>\r\n</td>\r\n}}}	defect	new	normal	GroupTicketFieldsPlugin	normal			falkb	0.12
