May be this will help you .
Here is the selectOneGroup from firebug as it appears in Firefox.
<table id="memberEditForm:selectOneGroup" class="iceSelOneRb label-font" style="border-style: solid; border-width: 1px; margin: 2px; left: 144px; top: 144px; position: absolute; background-color: white; padding-left: 2px; padding-right: 2px;">
<tbody>
<tr>
<td>
<input id="memberEditForm:selectOneGroup:_1" type="radio" value="905" onclick="setFocus('');iceSubmitPartial(form, this, event);" name="memberEditForm:selectOneGroup"/>
<label class="iceSelOneRb label-font">Admin</label>
</td>
<td>
<input id="memberEditForm:selectOneGroup:_2" type="radio" value="902" onclick="setFocus('');iceSubmitPartial(form, this, event);" name="memberEditForm:selectOneGroup"/>
<label class="iceSelOneRb label-font">Staff</label>
</td>
<td>
<input id="memberEditForm:selectOneGroup:_3" type="radio" value="901" onclick="setFocus('');iceSubmitPartial(form, this, event);" name="memberEditForm:selectOneGroup"/>
<label class="iceSelOneRb label-font">Member</label>
</td>
</tr>
</tbody>
</table>
The error happens in icefaces-d2d.js on line 2058 (again from firebug)
2057:Ice.Focus.setFocus=function(id)
{
2058:window.setTimeout("Ice.Focus.setFocusNow('"+id+"');",100);
2059:}
;
if I break on line 2058 value of id = 'memberEditForm:selectOneGroup' and error occurs
However if before continuing if change value of id to 'memberEditForm:selectOneGroup:_1' which is first radio button everything works fine and focus is set to the first radio button.
The fact that one of the radio buttons is not selected is not important. I've tested with the first selected and I have the same results as above.
Olek
Tested with Address demo wich uses ice:selectOneMenu and requestFocus() features.