﻿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.

It looks like:

{{{
<th class=""col1"" ...> Confidence: </th>
<td class=""col1"" ...>
  <label><input class="""" type=""radio"" value=""Low"" name=""field_confidence"">Low</label>
  <label><input class="""" type=""radio"" value=""Medium"" name=""field_confidence"">Medium</label>
  <label><input class="""" type=""radio"" value=""High"" name=""field_confidence"">High</label>
</td>
}}}

whereas the same choices as a select look like:

{{{
<th class=""col2"" ...>
  <label for=""field-confidence"">Confidence:</label>
</th>
<td class=""col2"" ...>
  <select id=""field-confidence"" class="""" onmouseover=""show_tip(this.id)"" name=""field_confidence"" title="""">
    <option value=""Low"">Low</option>
    <option value=""Medium"">Medium</option>
    <option value=""High"">High</option>
    <option value=""Very high"">Very high</option>
  </select>
</td>
}}}",defect,new,normal,GroupTicketFieldsPlugin,normal,,,falkb,0.12
